From 36648be466c2d155bc0833d8a5b82a298bd52199 Mon Sep 17 00:00:00 2001 From: Vaibhav Pathak Date: Mon, 5 Jan 2026 11:55:00 +0530 Subject: [PATCH] helm chart added --- CLAUDE.md | 414 + catalog-info.yaml | 105 + mkdocs.yml | 4 + property-settings-svc-v2-chart/.helmignore | 23 + property-settings-svc-v2-chart/Chart.lock | 6 + property-settings-svc-v2-chart/Chart.yaml | 30 + .../charts/mysql-1.6.9.tgz | Bin 0 -> 11568 bytes property-settings-svc-v2-chart/hades.sql | 2802 +++ property-settings-svc-v2-chart/logs | 17092 ++++++++++++++++ .../sql/000_create_property_settings_db.sql | 1 + .../sql/001_properties_table.sql | 30 + .../sql/002_populate_properties_table.sql | 19 + .../sql/003_alter_column_property_value.sql | 3 + .../sql/004_property_settings_db_v2.sql | 121 + .../templates/NOTES.txt | 35 + .../templates/_db-helpers.tpl | 61 + .../templates/_helpers.tpl | 62 + .../templates/configmap-sql-migrations.yaml | 13 + .../templates/configmap.yaml | 88 + .../templates/deployment.yaml | 93 + .../templates/hpa.yaml | 32 + .../templates/httproute.yaml | 38 + .../templates/ingress.yaml | 43 + .../templates/job-dbinit.yaml | 130 + .../templates/secret.yaml | 44 + .../templates/service.yaml | 15 + .../templates/serviceaccount.yaml | 13 + .../templates/tests/test-connection.yaml | 15 + property-settings-svc-v2-chart/values.yaml | 347 + .../ingressroute-property-to-hades.yaml | 23 + .../ingressroute-serviceb-to-hades.yaml | 21 + .../middleware-property-settings-caller.yaml | 14 + .../middleware-serviceb-caller.yaml | 14 + .../middleware-strip-property-prefix.yaml | 9 + traefik-config/service-ip-registry.yaml | 14 + 35 files changed, 21774 insertions(+) create mode 100644 CLAUDE.md create mode 100644 catalog-info.yaml create mode 100644 mkdocs.yml create mode 100644 property-settings-svc-v2-chart/.helmignore create mode 100644 property-settings-svc-v2-chart/Chart.lock create mode 100644 property-settings-svc-v2-chart/Chart.yaml create mode 100644 property-settings-svc-v2-chart/charts/mysql-1.6.9.tgz create mode 100644 property-settings-svc-v2-chart/hades.sql create mode 100644 property-settings-svc-v2-chart/logs create mode 100644 property-settings-svc-v2-chart/sql/000_create_property_settings_db.sql create mode 100644 property-settings-svc-v2-chart/sql/001_properties_table.sql create mode 100644 property-settings-svc-v2-chart/sql/002_populate_properties_table.sql create mode 100644 property-settings-svc-v2-chart/sql/003_alter_column_property_value.sql create mode 100644 property-settings-svc-v2-chart/sql/004_property_settings_db_v2.sql create mode 100644 property-settings-svc-v2-chart/templates/NOTES.txt create mode 100644 property-settings-svc-v2-chart/templates/_db-helpers.tpl create mode 100644 property-settings-svc-v2-chart/templates/_helpers.tpl create mode 100644 property-settings-svc-v2-chart/templates/configmap-sql-migrations.yaml create mode 100644 property-settings-svc-v2-chart/templates/configmap.yaml create mode 100644 property-settings-svc-v2-chart/templates/deployment.yaml create mode 100644 property-settings-svc-v2-chart/templates/hpa.yaml create mode 100644 property-settings-svc-v2-chart/templates/httproute.yaml create mode 100644 property-settings-svc-v2-chart/templates/ingress.yaml create mode 100644 property-settings-svc-v2-chart/templates/job-dbinit.yaml create mode 100644 property-settings-svc-v2-chart/templates/secret.yaml create mode 100644 property-settings-svc-v2-chart/templates/service.yaml create mode 100644 property-settings-svc-v2-chart/templates/serviceaccount.yaml create mode 100644 property-settings-svc-v2-chart/templates/tests/test-connection.yaml create mode 100644 property-settings-svc-v2-chart/values.yaml create mode 100644 traefik-config/ingressroute-property-to-hades.yaml create mode 100644 traefik-config/ingressroute-serviceb-to-hades.yaml create mode 100644 traefik-config/middleware-property-settings-caller.yaml create mode 100644 traefik-config/middleware-serviceb-caller.yaml create mode 100644 traefik-config/middleware-strip-property-prefix.yaml create mode 100644 traefik-config/service-ip-registry.yaml diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..29c773a --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,414 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Project Overview + +This repository contains a Helm chart for deploying the Property Settings Service V2 on Kubernetes. The chart name is `property-settings-svc-v2-chart` and follows standard Helm chart structure and conventions. + +**Application Details:** +- Java/Tomcat-based service +- Docker Image: `localhost:5001/prj-onlinesales-prod-01/os-docker-images/onlinesales/prod/services/java/propertysettingssvcv2:1752740345878` +- Service Port: 8080 +- Context Path: `/propertySettingsSvcV2` +- Database: MySQL 5.7 (bundled or external) +- Source Code: `/Volumes/Os/onlinesales/infrastructure/apps/propertySettingsSvcV2/release_kubernetes_2.0` + +## Helm Chart Commands + +### Update dependencies (required before first install) +```bash +cd ./property-settings-svc-v2-chart +helm dependency update +cd .. +``` + +### Install the chart +```bash +helm install ./property-settings-svc-v2-chart +``` + +### Install with custom values +```bash +helm install ./property-settings-svc-v2-chart -f custom-values.yaml +``` + +### Upgrade an existing release +```bash +helm upgrade ./property-settings-svc-v2-chart +``` + +### Dry run to preview rendered templates +```bash +helm install ./property-settings-svc-v2-chart --dry-run --debug +``` + +### Lint the chart +```bash +helm lint ./property-settings-svc-v2-chart +``` + +### Package the chart +```bash +helm package ./property-settings-svc-v2-chart +``` + +### Uninstall a release +```bash +helm uninstall +``` + +### Template rendering (output YAML without deploying) +```bash +helm template ./property-settings-svc-v2-chart +``` + +## Architecture + +### Chart Structure +``` +property-settings-svc-v2-chart/ +├── Chart.yaml # Chart metadata with MySQL dependency +├── values.yaml # Default configuration values +├── sql/ # SQL migration scripts (5 files) +│ ├── 000_create_property_settings_db.sql # Creates database +│ ├── 001_properties_table.sql # Creates tables & triggers +│ ├── 002_populate_properties_table.sql # V1→V2 migration (unused) +│ ├── 003_alter_column_property_value.sql # Alters column type +│ └── 004_property_settings_db_v2.sql # Complete dump with data (79KB) +├── charts/ # Dependent charts (MySQL) +│ └── mysql-*.tgz # WSO2 MySQL chart +└── templates/ + ├── _helpers.tpl # Template helpers and named templates + ├── _db-helpers.tpl # Database connection helpers + ├── deployment.yaml # Main application deployment + ├── service.yaml # Kubernetes service (ClusterIP on port 8080) + ├── serviceaccount.yaml # Service account configuration + ├── configmap.yaml # Application configuration files + ├── configmap-sql-migrations.yaml # ConfigMap with SQL files (auto-loaded) + ├── job-dbinit.yaml # Database initialization Job (Helm hook) + ├── secret.yaml # Database configuration (Hibernate with dynamic DB config) + ├── ingress.yaml # Optional Ingress resource + ├── httproute.yaml # Optional Gateway API HTTPRoute + ├── hpa.yaml # Horizontal Pod Autoscaler (enabled by default) + └── tests/ + └── test-connection.yaml +``` + +### Key Template Helpers +The `_helpers.tpl` file defines reusable template functions: +- `property-settings-svc-v2-chart.name` - Chart name with override support +- `property-settings-svc-v2-chart.fullname` - Fully qualified app name (max 63 chars) +- `property-settings-svc-v2-chart.chart` - Chart name and version label +- `property-settings-svc-v2-chart.labels` - Common labels for all resources +- `property-settings-svc-v2-chart.selectorLabels` - Labels for selecting pods +- `property-settings-svc-v2-chart.serviceAccountName` - Service account name resolution + +### Routing Options +The chart supports two routing mechanisms (both disabled by default): +1. **Traditional Ingress** (`ingress.enabled: false`) - Standard Kubernetes Ingress using networking.k8s.io/v1 +2. **Gateway API HTTPRoute** (`httpRoute.enabled: false`) - Modern Gateway API routing with advanced traffic management + +### Default Configuration +- **Image**: `localhost:5001/prj-onlinesales-prod-01/os-docker-images/onlinesales/prod/services/java/propertysettingssvcv2:1752740345878` +- **Service Type**: ClusterIP on port 8080 +- **Replicas**: 3 (minimum when autoscaling is enabled) +- **Probes**: HTTP health checks on `/propertySettingsSvcV2/properties` endpoint with specific query parameters +- **Autoscaling**: Enabled by default (3-10 replicas, CPU target 200%, Memory target 80%) +- **Resources**: CPU request 500m, Memory request 512Mi +- **Configuration Volumes**: + - ConfigMap mounted at `/etc/onlinesales/config/propertySettingsSvcV2` + - Secret mounted at `/etc/onlinesales/db` + +## Working with Templates + +When modifying templates, remember: +- All resource names use the `property-settings-svc-v2-chart.fullname` helper +- Labels should use the `property-settings-svc-v2-chart.labels` helper for consistency +- Container port in deployment.yaml references `service.port` from values +- The deployment uses conditional logic for autoscaling (`.Values.autoscaling.enabled`) +- HTTPRoute template includes advanced features like filters and header manipulation + +## MySQL Database Configuration + +The chart includes MySQL as an optional dependency using the WSO2 MySQL Helm chart (version 1.6.9). + +### Bundled MySQL (Default) +By default, the chart deploys MySQL alongside the application: +- **Version**: MySQL 5.7.30 +- **Database Name**: `property_settings_db_v2` +- **Username**: `propertysettings` +- **Password**: `changeme` (should be changed for production) +- **Persistence**: 8Gi storage (configurable) +- **Initialization**: Automatically creates database schema and tables + +To deploy with bundled MySQL: +```bash +helm install property-settings-v2 ./property-settings-svc-v2-chart +``` + +### External MySQL +To use an external MySQL database, disable the bundled MySQL and configure connection details: + +```yaml +# values.yaml or custom-values.yaml +mysql: + enabled: false + +externalDatabase: + host: "your-mysql-host.example.com" + port: 3306 + database: "property_settings_db_v2" + username: "propertysettings" + password: "your-secure-password" +``` + +Deploy with external MySQL: +```bash +helm install property-settings-v2 ./property-settings-svc-v2-chart \ + --set mysql.enabled=false \ + --set externalDatabase.host=your-mysql-host.example.com \ + --set externalDatabase.password=your-secure-password +``` + +**Important**: When using external MySQL, ensure the database schema is initialized manually using the SQL scripts from `sql/` directory. + +### Database Schema and Initialization + +The chart uses a **Helm Job with ConfigMap approach** for database initialization (same pattern as hades-service): + +#### How It Works + +1. **SQL Files in `sql/` Directory**: All SQL migration scripts are stored as separate files +2. **Auto-Loading via ConfigMap**: The `configmap-sql-migrations.yaml` template uses `.Files.Glob "sql/**.sql"` to automatically load all SQL files +3. **Execution via Helm Job**: The `job-dbinit.yaml` runs as a post-install/post-upgrade hook that: + - Waits for MySQL to be ready + - Executes SQL files in alphabetical order (000, 001, 002, etc.) + - Provides detailed logging and error handling + - Fails if any migration fails + +**Advantages of this approach:** +- ✅ No need to embed SQL in values.yaml +- ✅ SQL files remain separate and version-controlled +- ✅ Automatic file discovery - just add/remove files in `sql/` directory +- ✅ Clean execution logs with success/failure reporting +- ✅ Runs automatically on install and upgrade + +#### Available SQL Files + +The `sql/` directory contains 5 files: + +1. **000_create_property_settings_db.sql** - Creates the database +2. **001_properties_table.sql** - Creates properties table with triggers +3. **002_populate_properties_table.sql** - V1→V2 migration (commented out, not used) +4. **003_alter_column_property_value.sql** - Alters property_value column to TEXT +5. **004_property_settings_db_v2.sql** (79KB) - Complete database dump with staging data + +#### OPTION 1: Clean Installation (Default) + +For production deployments with an empty database: + +**Files to keep active:** +- 000, 001, 003 (002 is commented out) + +**To configure:** +```bash +# Rename or remove the complete dump file +mv sql/004_property_settings_db_v2.sql sql/004_property_settings_db_v2.sql.bak +``` + +**Result:** +- Empty `properties` table with proper schema +- Triggers for automatic timestamp tracking +- TEXT column type for property_value +- Ready for production use + +#### OPTION 2: Complete Database Dump (With Seed Data) + +For development/testing with sample data from staging: + +**File to keep active:** +- 004 only + +**To configure:** +```bash +# Rename the incremental files and keep only the dump +cd sql/ +mv 000_create_property_settings_db.sql 000_create_property_settings_db.sql.bak +mv 001_properties_table.sql 001_properties_table.sql.bak +mv 002_populate_properties_table.sql 002_populate_properties_table.sql.bak +mv 003_alter_column_property_value.sql 003_alter_column_property_value.sql.bak +# Keep 004_property_settings_db_v2.sql active +``` + +**Result:** +- Complete database with real staging data +- 4 Agency records (TVING staging, TVING QA, etc.) +- 24+ Client records with configurations +- Moloco account details, payment modes +- Schema_info table with migration tracking + +**⚠️ WARNING**: Do NOT use both options together. The dump file (004) drops and recreates tables, conflicting with incremental files (000-003). + +#### Schema Details + +**Table**: `properties` +- **Primary Key**: (entity_type, entity_value, property_type) +- **Columns**: entity_type (VARCHAR 200), entity_value (VARCHAR 200), property_type (VARCHAR 200), property_value (TEXT), is_active (BOOLEAN), creation_date (DATETIME), last_update (DATETIME), last_updated_by (VARCHAR 150) +- **Triggers**: Automatic timestamp and user tracking on INSERT/UPDATE +- **Character Set**: UTF-8 +- **Engine**: InnoDB + +#### Controlling Database Initialization + +To disable automatic database initialization: + +```yaml +# values.yaml +dbInit: + enabled: false +``` + +This is useful when: +- Using an external database with existing schema +- Managing schema separately +- Running in environments where Jobs/Hooks are restricted + +### Hibernate Configuration +The Hibernate configuration in `secret.yaml` is dynamically generated based on MySQL settings: +- Uses `_db-helpers.tpl` to determine connection details +- Automatically configures JDBC URL, username, and password +- Supports both internal and external MySQL seamlessly + +### Database Service Name Convention +When using bundled MySQL, the service is named `-mysql`: +- Example: With release name `prop`, MySQL service is `prop-mysql` +- The database initialization Job and Hibernate config automatically use the correct service name +- Connection string format: `jdbc:mysql://-mysql:3306/property_settings_db_v2` + +## Configuration Management + +### ConfigMap (configmap.yaml) +The chart creates a ConfigMap containing application configuration files: +- `propertySettingsService.cfg` - Main service configuration (prod/test environments) +- `log.cfg` - Logging configuration +- `prodRestAccessor.cfg` - Production REST accessor settings +- `testRestAccessor.cfg` - Test REST accessor settings +- `authConfig.cfg` - Authentication configuration +- `statsLogging.cfg` - Statistics logging configuration + +**Important**: These files contain placeholder content and must be updated with actual configuration before deployment. + +### Secret (secret.yaml) +The chart creates a Secret for sensitive database configuration: +- `propertySettingsV2.hbm.xml` - Hibernate mapping file for database access + +**Important**: This file contains placeholder XML and must be updated with actual database mapping before deployment. + +### Health Check Configuration +The service uses a comprehensive health check endpoint: +``` +/propertySettingsSvcV2/properties?jsonQuery={encoded-json} +``` +This endpoint validates: +- Service availability +- Database connectivity +- Property retrieval functionality + +The query is URL-encoded and checks for BUSINESS_SEGMENT_SET properties for AGENCY entity type. + +## Values Configuration + +Key values.yaml sections (already configured): +- `image.repository` and `image.tag` - Set to Property Settings V2 image +- `service.port` - Set to 8080 (Tomcat default) +- `replicaCount` - Set to 3 replicas +- `resources` - CPU: 500m, Memory: 512Mi +- `autoscaling` - Enabled (3-10 replicas, CPU: 200%, Memory: 80%) +- `livenessProbe` and `readinessProbe` - Configured for Property Settings endpoint + +Optional values to configure: +- `ingress` or `httpRoute` - Enable one for external access +- `nodeSelector`, `tolerations`, `affinity` - For pod scheduling preferences + +## Deployment Workflow + +1. **Update Chart Dependencies** (Required before first deployment): + ```bash + cd ./property-settings-svc-v2-chart + helm dependency update + cd .. + ``` + +2. **Update Configuration Files** (Required before first deployment): + ```bash + # Edit the ConfigMap template with actual configuration + vim ./property-settings-svc-v2-chart/templates/configmap.yaml + + # Update MySQL credentials (if needed) + vim ./property-settings-svc-v2-chart/values.yaml + # Change mysql.mysqlRootPassword and mysql.mysqlPassword + ``` + +3. **Validate the Chart**: + ```bash + helm lint ./property-settings-svc-v2-chart + helm template test ./property-settings-svc-v2-chart --debug + ``` + +4. **Deploy to Kubernetes** (with bundled MySQL): + ```bash + helm install property-settings-v2 ./property-settings-svc-v2-chart \ + --set mysql.mysqlRootPassword=your-root-password \ + --set mysql.mysqlPassword=your-user-password + ``` + +5. **Deploy to Kubernetes** (with external MySQL): + ```bash + helm install property-settings-v2 ./property-settings-svc-v2-chart \ + --set mysql.enabled=false \ + --set externalDatabase.host=your-mysql-host \ + --set externalDatabase.password=your-password + ``` + +6. **Verify Deployment**: + ```bash + # Check all pods (application + MySQL if enabled) + kubectl get pods -l app.kubernetes.io/instance=property-settings-v2 + + # Check application logs + kubectl logs -l app.kubernetes.io/name=property-settings-svc-v2-chart + + # Check MySQL logs (if bundled) + kubectl logs -l app.kubernetes.io/name=mysql + + # Verify database connection + kubectl exec -it -- sh + # Test connection to MySQL + ``` + +## Important Notes + +- The chart uses modern Kubernetes API versions (apps/v1, networking.k8s.io/v1) +- Service account is created by default with API credentials auto-mounted +- **MySQL dependency must be updated** - Run `helm dependency update` before first deployment +- **Database passwords should be changed** - Default passwords are insecure and meant for development only +- **Configuration files must be updated before deployment** - The ConfigMap contains placeholder content +- The deployment automatically mounts configuration volumes - no need to modify deployment.yaml for config changes +- The Hibernate configuration is dynamically generated based on MySQL settings (internal or external) +- **Database initialization uses Helm Job** - SQL files are auto-loaded from `sql/` directory and executed via a post-install/post-upgrade hook +- When enabling HTTPRoute, ensure Gateway API CRDs are installed in the cluster +- The image registry (localhost:5001) suggests a local registry - ensure it's accessible from your cluster +- For external MySQL, the database schema must be initialized manually using scripts in `sql/` directory + +## MySQL Dependency Details + +**Chart**: WSO2 MySQL (version 1.6.9) +**Repository**: https://helm.wso2.com +**Condition**: `mysql.enabled` + +The MySQL chart is conditionally deployed based on the `mysql.enabled` value. When enabled, it creates: +- MySQL StatefulSet +- PersistentVolumeClaim for data storage +- Service for database access +- ConfigMap for initialization scripts diff --git a/catalog-info.yaml b/catalog-info.yaml new file mode 100644 index 0000000..210a49b --- /dev/null +++ b/catalog-info.yaml @@ -0,0 +1,105 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: propertysettings-v2-service + title: PropertySettings V2 Service + description: Property Settings and Configuration Management Service providing centralized application configuration, environment-specific properties, and dynamic settings management + annotations: + backstage.io/techdocs-ref: dir:. + github.com/project-slug: yourorg/propertysettings-v2-service + # Argo Workflows annotation for environment provisioning + argo-workflows.cnoe.io/label-selector: "service=propertysettings-v2-service" + # ArgoCD annotations + argocd/app-name: propertysettings-v2-service + # Kubernetes annotations - Using kubernetes-id with commonLabels + backstage.io/kubernetes-id: propertysettings-v2-service + # Helm chart annotations for environment provisioning + helm.cnoe.io/git-repo: https://gitea.cnoe.localtest.me:8443/giteaAdmin/propertysettings-v2-chart.git + helm.cnoe.io/chart-path: propertySettings-V2 + helm.cnoe.io/values-file: values-dev.yaml + helm.cnoe.io/available-values-files: '["values.yaml", "values-dev.yaml", "values-local.yaml"]' + helm.cnoe.io/dependencies: '{}' + tags: + - configuration + - settings + - properties + - java + links: + - url: https://wiki.company.com/propertysettings-v2 + title: Documentation + icon: docs + - url: https://grafana.company.com/d/propertysettings-v2 + title: Grafana Dashboard + icon: dashboard +spec: + type: service + lifecycle: experimental + owner: user1 + dependsOn: [] + providesApis: + - propertysettings-v2-api + consumesApis: [] + +--- +apiVersion: backstage.io/v1alpha1 +kind: API +metadata: + name: propertysettings-v2-api + title: PropertySettings V2 API + description: REST API for property and configuration management operations + tags: + - rest + - configuration + links: + - url: https://api-docs.company.com/propertysettings-v2 + title: API Documentation +spec: + type: openapi + lifecycle: experimental + owner: user1 + definition: | + openapi: 3.0.0 + info: + title: PropertySettings V2 API + version: 2.0.0 + description: Property Settings and Configuration Management Service + paths: + /properties: + get: + summary: List properties + description: Get list of all properties + operationId: listProperties + tags: + - Properties + post: + summary: Create property + description: Create a new property + operationId: createProperty + tags: + - Properties + /properties/{id}: + get: + summary: Get property + description: Get a specific property by ID + operationId: getProperty + tags: + - Properties + put: + summary: Update property + description: Update an existing property + operationId: updateProperty + tags: + - Properties + delete: + summary: Delete property + description: Delete a property + operationId: deleteProperty + tags: + - Properties + /health: + get: + summary: Health check + description: Service health check endpoint + operationId: healthCheck + tags: + - Monitoring diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..2e13ac5 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,4 @@ +site_name: PropertySettings V2 Service +docs_dir: docs +plugins: + - techdocs-core diff --git a/property-settings-svc-v2-chart/.helmignore b/property-settings-svc-v2-chart/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/property-settings-svc-v2-chart/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/property-settings-svc-v2-chart/Chart.lock b/property-settings-svc-v2-chart/Chart.lock new file mode 100644 index 0000000..c286f9a --- /dev/null +++ b/property-settings-svc-v2-chart/Chart.lock @@ -0,0 +1,6 @@ +dependencies: +- name: mysql + repository: https://helm.wso2.com + version: 1.6.9 +digest: sha256:bdbd774f845f1f0f4b7346e75b80f6c2e244cf92cf9feacf3d4807f8e50f9bce +generated: "2025-12-09T14:10:52.064234+05:30" diff --git a/property-settings-svc-v2-chart/Chart.yaml b/property-settings-svc-v2-chart/Chart.yaml new file mode 100644 index 0000000..a8a685e --- /dev/null +++ b/property-settings-svc-v2-chart/Chart.yaml @@ -0,0 +1,30 @@ +apiVersion: v2 +name: property-settings-svc-v2-chart +description: A Helm chart for Property Settings Service V2 on Kubernetes + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 0.1.0 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +# It is recommended to use it with quotes. +appVersion: "1.16.0" + +dependencies: + - name: mysql + version: "1.6.9" + repository: "https://helm.wso2.com" + condition: mysql.enabled diff --git a/property-settings-svc-v2-chart/charts/mysql-1.6.9.tgz b/property-settings-svc-v2-chart/charts/mysql-1.6.9.tgz new file mode 100644 index 0000000000000000000000000000000000000000..d23e4bc6b655c7ea6d8ff87d7f96005dc28d3da9 GIT binary patch literal 11568 zcmV-0Ezi;)iwG0|00000|0w_~VMtOiV@ORlOnEsqVl!4SWK%V1T2nbTPgYhoO;>Dc zVQyr3R8em|NM&qo0PKC+cH6kJ;C?;)idu5|*v>I2$&Qn>_T;RiI7-^96Whm9`m(dL zEQo|8j46TvKso9--!SjiVO zj1d#g3{CvM-NVypG#by2kJbN;Mx*$D(QZ_Ou-#^K@NvuDqq{H@VEJbc#p8{9`< zN>9WEVt;EiwuMtf?l1D7kom9&cGT zsIQit_Q3}EB0#cz{ZV&Vm5$pS5iyPis=@1MfLVYA=5<$c46iQcQTG}%+b08t*sQK0 zPvc>2I!~P+t?xbW@uT^Fiu?%k`w{?)`M>$3armUj|Hp^N5B&cvo}C>{`9LOUguzg$ zwX*{Z4^zgIq^-$XQ8=sTh`TP(h}W&19ZNxJK~24`>7P9`YC%m)lbU65!H~eCS<3?9#E6)k&_LkNq6J^RT5@c< zA$G}d1|i~HiWeAC28>c6MIVy`v9klO@DN45XaPfkM<>v1fRq}@6_^1Rj07XgjQ%C1 z;=;gcfkaJylt50@$N)-&R@#ED`krIfTC=&NDb+;V_vsBp0gA*J2ZFdrU=NV%V$KgB z3Z$6Dfsle-k8!4TRkt$<#Vpf(IsTP>&s2P6UbS-LiGt#kz}_YP6cL8KeOd5S>~dgO zcge$^?36o3!3cvG6E1)5w*4D45w9Cm#qM|U?z;H`Q_vO9!I0nY1k zob6FWJX}{Gczq`dJtSww)-Mu*pG!e%cs-BE#ZRt&h>apSmK?+w2|x@h64H3c&c2&< z|MM-lG!Tdcm^l)_YsvtBMw8H2lMlA->8Z9eGe&4&hki67!3#CMR{;`aimwt1B}1UT zhZ(p&Q9TH-YF4)3(jdUDnqg$R@El0M1qxj3Scr{y3qE|bEc{t8^b7T)3Fa-hwE%X& z2EBl)Z(O|sz>*|h5vDmNQ|%p%09R~V%&my#95t>5ySOd5r&a>9{97E*wn|< zfQXZLnO(cJ^sO=|6a)bnYWNsX50>AnLF zri9TzG0GG%r5M}O@E(_fJ8l58UGQs=kcW&7%v_N96YpjP1))Ks0CW$nOusMRKa z20UdE#2A_Z9j3g}l@e5N$Jzn&CrlzPV1QwQf=B_-GS&kUC`yxE;31OpTafh?yx`Kn z#i3AtnDI@R!gMTQi!kzit~+7Vz(#gRJ!_}b*H&(JCbLUCB3!W9&v>RwoS}&pBWKjZ zz_E{AL0M^KTGHDg8AVL7M;&oaMuF^(9Z(O~cjUhbT=}DGek5|fJsgsNh}m7XiVRE} z1)hxpLG1XA75|a6-=jX(aJX7xLh6AAC<#rLxZJE)auS8=fk>KA3wZj|u)I&EIKZ4= zFgn0$VGf8O$bW@>Bxi~S9&f=>!vY8~Bh*XYHRU@&CYVMdd3h{X)kv)^y)nalOnt8f zO$%U%h#xVWd3$78lF`ZX=8sowy}4fNJ3DY86(TOw5~k&2sNX0?S0c?y-nh6*5!u;E z7jFgTB88xZB6J01a+Nyq5$C$f=@2|TBmwpgfa}ld>zU%0|CW9A?@0}gl@PDlwW>TnHJR5~=wa>8PMZf$0J4Nr_=roqeDzZYYR+{{RA7YD|eM zAO;tyNQnb*$CPp5TB>k3UMn=WiH|Lj6-|ZEotT|VPO`y}NV*P@7+bjyujPBARbb(ojf*Vec=eTFMn+GgQ_L9gQWDlx zI2KYj0w0j+R)$X-lw!0lTeGO;lJ?Q*)+U<399eCAw-G2YJ2PZ$ZFWV=*&Lwm^ zJ&45cdHU)6?OO>)zPuXY05jxYx#aJ%5w0Ztnl0-}TQzOTwOVqUWH&WTdPskR3q}QX zslUr1q)b>l;5cwYd>`=VkaAsEeu1N-#?yxWeny4<@EcqxrCw?4Tahr0}ga=nua zaILb4LJw*`HXBc5fs&FlN6%;;t8Z0GO<7Y}psQ4CCPN>Yjg};2HYF~8M*|`i(yEz| zuaMbXBL6KKU_V{CQYkLU$Us|9Xq!sBZkfMYmE)h?zQ+wI!;b#8vf3OsX9rl^P$nrf zeplZKqk&Jj+=bamIXnK-maXx`oOGg>)zgcZj1^}o{XlBq7y8vt1t2CdM>s8WXqI!A9oyS(8&m!rdruyC78p_SduOS6nDxL z1U{yb@5z0h+1|yvkp7vHirh??U7y@JN}?!$(sp|%(f$G|l$s~kd<_iu!c6p*<#r=|d4K`8cjQ710WfAOX%UBC` z+YuKG`2^LwGcUliU27+)DA^ib;n1fug;P5fW0se^ZkM(Ia#bH-DP~g}U9y?e>Xh7+ z@9}*rq+YRpNWFqs?qZ=f@gXBrsp|2D$=WHu)3ub@Q)*_3AW0X+c!0Q4#uDRKE4Of} zg(9zBrwVqnVf5=n!=C(U&ZZuo`+v;&jS2_~PcCy3Pqpp({y0h$aiH)hqKiKhbs(ti z;zMwj4BjNPPUl(HlXVQ7Y`DH&rF#k8)hG&#@Yc9)%GWdf?RoYXX8rfyM^j{oei0 zw^x_v=e?_ocDMWM`Q@t@kM?3DWp#t$N}XRit6)?3@0$HMFH3ZY+HyKL>h#xPikK1pRMLory;w@u#|=3#Tk}rjcv=$kHIFsWgR+j zs;vbX+RC-}2v8_&IoRry6vMy%Yx2ez8jPZ@tARbUtRn{u(`L61G4KQVGtd@d59^T$ zlcQ_hs4i@eSDChO;aG!5m>jX0=6D(jE?bp7`uRCexn8zw7}RKF9BOA~V_8dB$L#1F zxhIv=oD%9!=iOd`KGjLoioBH}zTGbl5qQEsG(I|9AQ5o~c^;E8T)i_tzV7a4n!h-| zEH=-l?tSpa?iYuL*i~{`^(Wqb%MK;us8~HWn8^ly<&K64sQ!)X@r%*e7Bgj&}m z-)Xy0=QDOAV{J>Nzc~e#M8atN*-h4$R*uCaM0-ft4U%$p>eiPJ)3SbL<%3e!V={mA zB}Mxy*cb6{iS1XgBP}HDFn*ttihA5~`h8LVyBcFZ#Ed&4yfas@CHmjtljdPj|9krM z!TQhXe%{dz$Lgdo<^x&sJU&{v1;L`gg{MdAPcrF7!y)+$H9G|+`NP)gQvI=& zIvbfbB*)F*Q-pjnB-jHKhN|C=^()rURe2%XkT`G{U>C{7l+y`@pA+kzQ3DC~J+54K z)CpK@4m(HP^8$#}+P<`!6Kz@?;)e>_s1Z@pN3PBZ;X#z8~LEjCHHkdZ(P3m@0+r-4%Y zf!jauS^=7FejQ?)_qQg(H^v%j=GUm5vXOby$P-_exUFPB_ekLSkyo{Z>@V0G%w>%t zp~6as4kJ zUfcTB1cjUWhcAo&c=DuR|2b?n4j{kKaevcy<7frpTA;&|(y%O06ou*RSe)MgEjE zZ-E4!+>buV$b-CS_}+7LpHGqh)5DOviw0TD|A)<^Cq@1L_(|g-{^OfGS=L5j$mA9`F!+ir4dCkoGVRR}hO2=FtzfmFCLw1O&#zzY^o>CbzJ9HlGceTyQ!A$k#zn@M z5uxKovSngd09i~5h8rTriNL8mKh*uqdP^vCG5sA)d~h;S2l8Uak~;@E8flnJre3Vs zm~RCzka$TOCpskD@!QP!t~J7$@v0au3lbQy$6iV!^6_)+uG#XEwo6lx9JK1M732II z%Hq8UqBMP~-%F>k2wJ(_nOV#j3zNyqdUB@iKsooS~fD~`LfNLSTd74d>2Z1#-E40hR5RzHb1Y|cQJhi1y;s5SMfT~IM8 zwP5_p+pJ2isoITY_=n^}Va(guU#7b@cG#j&&yiG!ikU+`HeB4qFcBV{`J<`YlherchIoo#t^D;Mp zODip7kBVriSZ;>?!crNj_jGk3kPWR#3*`cCD&{#?YZKWMN7H0vc^qF;(Ogn`lcq9J zGijM@C{0C!**Yt=>CR>7)tA)@_SW%{dA^Q4b?<_ytt?sQmR!U}Jli=HXP7Il_jyj9 zylvHRmE0%|S>>yR(q*YU!ND}&$D&_CIV3h)J)SasI@5mp_WakY&by1=@5v!e2Gcko zF!f_zfF;o`n|mnm(h*Mjl8rEiJy|f<>FnqI{rMfv9VZog`kK*6EAujT=KLAYF7Yt` zWx+-wYZ5I?J;V-@702y`V(U+hey9n#Ov1N{K$jEP*0Zt7O#EpkVe$A=wsZ>iRIqTq znADQ??`3lGqxintxhykW)~sABcdSbE+#jVkTR+MKzS+Oc=P07l4k#*;U$du2G?bg%6<)*vz*Odr#$y@^RsX?G|3t(qndjrQ?qcfcQ zi}ZkOOxc`naPF_GC}mUK%+r=~WmZ<1ic(s~;+8Q?23Z$awEvG`RM`P?-`24QoUd=pS3SQO z^6RQozWnDYv4c!8E%q12?AskCx&;vN1cX~388fAhHL|J{7jXg+)3 z|8Maa{?8s$R%sczGs?LNgHi>waJZ<_MT&Cd{`^YI?tPg)XI%OKHuTf{3p%dGK8a~U zOw)UNo;H}4%gr1qAd-#)z&RSN*=%!VvP_4YOT2W+P z@AF-%RjnBLKfgDRFM5jd-(+sS(=}jO{O_~IQ7QiS*@OT8H+eF?DvLu3wJ%3*9jNwa z*@wNN(?`zTrP|YFu9m5L@eqQLmE=0l;dzKYMc9f*<;$0n89g`ds@D~k;1=Y}U!{7t zFnIa|2X1}|$mD2=n_f;D3;OWoi@LX>?T2G@7OC4S<~JNK!G*tz=vOtn0PFk4_|A~c z{A$&>l+`-1*L4;UY|FUc-wXP>rn-NJt{NUqg6QU(JCzVXmuXb$(J>L zE=ng&s}TA8%cc}&qPm>P!mNwQU1_$|Qk~+i)Qj@^uZFa85D7+(OBtqIB?&Hy4g;iGbj&|<`Y)~BR~(4V8Tw-OcgRP- zu35PlOq@GKi;YJ(@RToBVmhiix+j6aY>NCA95r}$qPpeyWHno9K+}SWTsgRT8Qs7t z@x^~}xxVUClK2(iAm%LamoDx(i&bhONN@-kGaPBEX zW_8}1vpnyYzhpq~FJ2N>>O?I1^^UkAb7h*8Gd9nw4&zVNC2MapH*VDSwN0@Q1Qu7w zU(T@~2gDWb?5OHgzDU}=#GaD){gtDR^qRIHN2e?#5F25keF4*|bI2mjd>U6yFCwXE zrC2!E?N#HQDk7bVF-|26Ofi!(y9K?Ii{hxQ;(%P`LK)_LCUZ?E#d0m>m-`h(#P=4b zf4Qf){tL{7{&)MlZ}GEi|M&Fiabf*`cGP@0|M@0QF|agyt9HWG_v8X38~Zcr3oGu? zmZ%l+Xs{@7_*gj{Epa-%&2Pi2PjCSKLyjBNdis`d=yu~l=wXnRb# zc(FqIZd(fKxoNXghtQf_Mryjs!fOc4_iH?RQNDsO6UMjj49Z}hSq@Fo@O204yAIT* zxZbBj!F>7ut@8ghj+)0s`G0(L{E+|in>^de{|o9pNdAfqWp1Y^Yt+WrpE!J6A5(f= zYk^X*Oz3U0!CE*Mg=Au}j-1b91{GDc(x4pG!ceMN=3_X0{KtIt@jAfCN{;f$|TPs7@NTJQ# zF_~gGqk_2Dvf3Qz5YFfnnnwq4*f?w)=zSFj66nj1n5?HRFbXL6G#Fu~t};@W0D6w~ znlhMBhJge_$|g$VJphjNeKbE|e*z~O;)ho_WY|?DlqD?Rn~!_(z0)Hi#?e6elgM?e zu6wleL+AAmFQ5PL{I%_+fNT_aHqwCXKmpo6P|!cTS6xiO##^+3Pe%r(EwRgjtM5CO zwWG~Qmi0mXpF&VS9m+=gKseAKxoT%ZxqwhzyUmLCN1LI226c zED*FWPI-Lcyk*11FZyapPH2!0K|C8#;9=&^WT!|lWQYqExguiN43N6fGVZdXV0F7B z$=s5uhfK9Ef97ri>rZC3dC_lKR=?jLAU?JpfkZcfqAz8Hv@CE%93~xBzu%X$gOlqD z_4so$8|F^i%!tH;ZE%cjl)1bP4oHX}a_>Iw?c{#%%k6>UQ=f35?~xCY-0}%YwCZ|N zbI)#E4}0K6Ob@3*PB&&*FK0p7bV2VYy>vkw~r>&01Y8Ga^&H%bB5x?^xFF=7v><1tWNhtFECP%z#Bf z5K}_w3P}gvp=%60VybHlhdy#KeE9wR{pHnV=WVCm)oFA-nu}D;g=LTS%pbe|{DJO5 zzv4RE3K+IAW3P5Y?T5!7zt;Numi6!O_;HVfj~}<-E#U$r?HP*WhBNz$Fy(aj6$iWz z$UGj1;!kxC``Fw(mL>R%oG8=2sbkw=#70@#FO$2@W6vRGxGbg9Nk{`62o8vI>Jmjf z2`_5a)GXtx3Rw=7mE~K1riIK&F7JuzLORb{TBm%FFp7MgVG6Spm`kXW_Qei?}MR@Z7>H%w0xQe%w_mtoKOpx`XRgvu?p&xulsBWUZK%PY{dI34_7;J zt^~wJ(L@oVph|4Smy;VxNUkziV>bF9KCarA{A~2++@4Sg?KXdpL=yI!1pL<3O_+S` zp2Xna;R$847WA8qccgy+Cl~M4kI5qBG#V2$!YdBJt&~0dli$}?OQo@LA}E`!KIAKb zU$0t%Mh}fvsar%tpwXT5KLvm6Jadj3>*1l$$lVaKq<&ibUgjeUew}JrG{g!MQbyxW z=i?UoP3P!vT_#s(RG#6@fnHNMn2QP;;Ogso@3~k8u1oL z?gkUj84n9Y{LR#nTj&R5-8DQxBh5#*3_?ydH0OZ&%5N^z?pRQ{-<5h|e8V_~z6kw3 z45PqZrrzJKi$FCR`doFPq$;6dQW@U~E?c9Kzqe|^x{*OcD!Z8j_B+62Yc$N28fy_1 z4yJ_BKpEkth!MH`Z->k_Xp}513yCUW<=D#8XOxP5Z0Au2lpc^F;DQ_=T-)+I>@5I) zsjW-RhT4B4SMAGJN8>%mYy}CSBo&KqS`YAz>b@Lk9ZtRFO1_Px%H_FOs;HM{BgSRx zskn>Th_B08iiYxsktoRSC&u?XnvQK|V`<9fezqO;0S0(T8BX#|%b^}%Ip(^$SUl(p z&^T&rQmu?e?sALLxZJ`|^akiq;6Rx}FdI@f(e`77$#&1Jq^3JTBcJcNh{rAbI>te! z+p;(Z8f~W%rr?h^s#Zp$c)Lfx(9Sy&kV!O=%bwJ21)1Xb_7KbyzBf2hW6$Tr!;<+; z!C~YB8Vbx{jHXf$3=#3M=g8T(BQ%Ovi>!i%sk0Od-P=3{3N!3UBouFKjK=cBbGVDa4T z+^Z=g<|yd;IZvI8 zLW6?7iZtyf@uVv&TDLGnK3`igH z2@OvESV&j5&?SE;qDn6Sh!Ij5|F^;dZsGYG0++vTjYcMKY85)S(3^$#iAF&D4XPE< zNOR&=&&e%ZV&whGh`{H8i-9ur;ym#0#OziCzbP8Iyv-Guq>?Jx-<79j8#FeTR2A2@ zEnx9(H1G&h5h1f!@TT0Zob|sy8ku;ZIVZ7cK5ft@I>=?Q-tM`DFJCvQCeg@-+$^_K zoly^)fG)LEgwzAXIT>kt)ppM|Xv8r-tDVHQ1Lofk+^- z(MSrLj3eKs&o*cj(n>5j-{=bEOaoHgvt7ib#xcQSj3W;54P#rN(O25YCWmIZTkw{u zhMl;p`mpS7A1QDcotTT)?08s~a%>5WCEg16kH)m&G#k!(ZVF{ImK>gy(74;vvuzH| zN>_?4w5TU&%yHh?7LCpK8>`-1*DqN{Ow~Ixg5E-N6Vu27G^#BNe`2fQ>KEzt=gr1l z*{kjWjmqix6B~GPH(M@UH!^2``YO!W8lruHlNC@dN$r$VEA_vL~L+MAsY4J+j8 z!cbidw#Bo}@>hLH_dJt=y1@G$(WqnLYSpkVfjeG(Iab>EnRkd z{w!cm;}ueGU5jTPjg48nh{lk=VKfToprO9O>8nK0CQc)FfXOZV_~VZoRI5URMM0a- z@mkPc3ipM@mS~hxWG*o9WP(1jCXvJty(tC;{N|h3Y|_i+mXQn^rlLx?xnaLc;7@eq z*XhMt)v{>h6Kc+rRN35~2_oyYx(JPat+wIvS9!C+T(9VEh+Q%yn8VE&t8*Dtxa|P= zm`1**PMQ>~)s@`sBvlTLV9}Y=t%~FeGAB+26jJ?aljj!RBvE;3^kzOaNt&~yfJT~? zWCc4_7mFxV(Na=@?RMWP?oQ%oOfI(#7s0J&Bguxc!g`rI`!mi`M&`zYCsE7YzOxP* zI>0YZ#=MR~l97r&U(L zZO{;8g8!hwO2YaU($Gb@c4*T##2{d=_Yc6qbaO>rqp|nCcLE*`ap1}6rGd5>&jYK^ z{;1bpLAf>UyhEX!jI4GmC?GF!-VUj^@eXhslR`+njO}AtI|hx|DspES81P%5!3b5` zrug#Lg%HHO9Hxrj`C-H|DvC4S2Az3R2Nd=8?AUw zs#B~$TuQUNakc#IqYRAMEUMX z%E{SDIUu2Vt3E}n?vp{?gwuz{xSCUEiiv3|@3RNOlg+=P zWu88V@d#IzP<7rB2VEhbh?zArqnOE7lbwM~<%|PSvNuKnsEbry5vFDpBhOKjRBLCx z82=~PHep;OINXeJAaSLh{HDEGbch&Io;x~mmU0MF5oJCNM)H4!s;Lzx!%@kHkWks7 z9DUT5K-PI%JQy-M0i+X1N%}^?3>Ze71_zpgpfX7}fF=U1P2j$VtUryGJXwQD_~&bu^IFppVc@ z0^0mIB|Lp#b}_1`x}%Oop_n@=Le9O5^epSCmy2#plv2_Kk!D3MkT6NuP9iSoBsESI zPii)jadL491qW9HuQ~uS(oG4o@_9}_&XNT;NGlFXS{Q)j5A0R-_y7`Vq|JmX{}oD? zugabbW@@oaGGfU^NuBfrg2zN$d5njIU}O*ptdiiF#ZWHv%rjxD86i(yr32}PY2eRH z>t-9KIIZuv!LYA(tv*Gb%5K;1_oX1U${lFMH+9Qe$$cFk^tMswo#xjhR5wJ}E^@~> zeJ9sVTkiJ#sd@X!wh<~M)vMEAPP?b)XIC$OSKnp1_WR!X)yZY2-RoSv?{+TbyUy90)3eT1 z_x;Om@3i;6cY1ynqjIGuxEdq1fbW=WhDGY%o>(6{e0(7P{p724L;dB9{-`8a4bR4b zU^8{Wq%Hg74J7HxPH-GoV;BZlPBDuDsnWQ@p8=I}M2fi79#OzY_JEkERf%3EPg^Fx zk(3_Xu_}0_08S^{;w28L8pYK(qS8W>vV@hAZbeB+yJ{`By@4F&WU@7>z^itz{j%Nd z!0Br^JMTf~x6^K~YnK04o!9O6Z+md^Q~R=g((7D8x6^}244?KI9RxJ+)@xVS*{b1~c)Q)VxeS#ijU!J)Q+n--naK}0aM>)B3Pk4cASG`PPaPu% z=tL4`o#EjG1@&X+Sse%Uq`IA{?u^C6-`8TN_qJOvnZOe*eK6DcB~=`?>Nrum2RaFT z!pFJ<*H`D7taP6uBFXk7W8-Z{Vyw&$ikc3LF<#kFQ|oWG2M2MsxujTXW!2dMawm{- zBc;^{i3tr;bAc$0bs_Pg9Ag)8NtD)Oc&D;;=IqnlTmhj5OKw0G7o(Bj#8WDpDy&4- zDp0LclRQ-|TiLQ%#j<3m?#Ib3bGs&;sL1rzh=RN4+&A9LLF)?VP=;E-4$h7r@teRt@*E+lGtF z(_bX({@nR}3GB+!$@Ws}0#d6_^JrGj=NQEa7@6F3flfCpbjs1(R+_{abJwA|rURWo zr|}$DRnhyR*ef!d&j;~_J$*NT-8Ilp=j zf^xH@nV_V_f^08I8!ej>V}>zs?t@Q)m_kx5P$8Mua^-X(eVdy`IDI|unzy9HHJ;@P iWQX#5Cp&+59-fEi;dywH=l=x&0RR7$aS2=i_y7PwRNu}3 literal 0 HcmV?d00001 diff --git a/property-settings-svc-v2-chart/hades.sql b/property-settings-svc-v2-chart/hades.sql new file mode 100644 index 0000000..45b7f91 --- /dev/null +++ b/property-settings-svc-v2-chart/hades.sql @@ -0,0 +1,2802 @@ +-- MySQL dump 10.13 Distrib 8.0.36, for Linux (x86_64) +-- +-- Host: 127.0.0.1 Database: hades_db +-- ------------------------------------------------------ +-- Server version 5.7.39 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!50503 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `access_permissions` +-- + +DROP TABLE IF EXISTS `access_permissions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `access_permissions` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(250) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `access_permissions` +-- + +LOCK TABLES `access_permissions` WRITE; +/*!40000 ALTER TABLE `access_permissions` DISABLE KEYS */; +INSERT INTO `access_permissions` VALUES (1,'OPEN_END_POINT','2024-05-20 09:02:00','2024-05-20 09:02:00','root@172.19.0.1'),(2,'ACL_FREE','2024-05-20 09:02:00','2024-05-20 09:02:00','root@172.19.0.1'),(3,'ACL_APP','2024-05-20 09:02:00','2024-05-20 09:02:00','root@172.19.0.1'),(4,'ACL_TOKEN_CHECK','2024-05-20 09:02:00','2024-05-20 09:02:00','root@172.19.0.1'),(5,'ACL_READ','2024-05-20 09:02:00','2024-05-20 09:02:00','root@172.19.0.1'),(6,'ACL_WRITE','2024-05-20 09:02:00','2024-05-20 09:02:00','root@172.19.0.1'),(7,'ACL_ADMIN','2024-05-20 09:02:00','2024-05-20 09:02:00','root@172.19.0.1'),(8,'ACL_OMS_PACKAGE_READ','2024-05-20 09:24:42','2024-05-20 09:24:42','hadesDbSvcUser@172.19.0.1'),(9,'ACL_OMS_PACKAGE_WRITE','2024-05-20 09:24:46','2024-05-20 09:24:46','hadesDbSvcUser@172.19.0.1'),(10,'ACL_OMS_BOOKING_READ','2024-05-22 07:54:05','2024-05-23 04:11:06','root@172.19.0.1'),(11,'ACL_OMS_BOOKING_WRITE','2024-05-22 07:54:05','2024-05-23 04:11:06','root@172.19.0.1'),(12,'ACL_OMS_BOOKING_UPDATE','2024-05-22 07:54:05','2024-05-23 04:11:06','root@172.19.0.1'),(13,'ACL_OMS_BOOKING_APPROVER','2024-05-22 07:54:06','2024-05-23 04:11:06','root@172.19.0.1'); +/*!40000 ALTER TABLE `access_permissions` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_access_permissions_insert_trigger BEFORE INSERT ON access_permissions +FOR EACH ROW BEGIN + SET NEW.creation_date=NOW(); + SET NEW.last_updated_by=USER(); + SET NEW.last_update=NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_access_permissions_update_trigger BEFORE UPDATE ON access_permissions +FOR EACH ROW +BEGIN + SET NEW.last_updated_by=USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `access_role_permission_mappings` +-- + +DROP TABLE IF EXISTS `access_role_permission_mappings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `access_role_permission_mappings` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `access_role_id` int(11) NOT NULL, + `permission_id` int(11) NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `access_role_id` (`access_role_id`,`permission_id`) +) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `access_role_permission_mappings` +-- + +LOCK TABLES `access_role_permission_mappings` WRITE; +/*!40000 ALTER TABLE `access_role_permission_mappings` DISABLE KEYS */; +INSERT INTO `access_role_permission_mappings` VALUES (1,1,5,0,'2024-05-20 09:02:01','2024-05-20 09:02:01','root@172.19.0.1'),(2,2,5,0,'2024-05-20 09:02:01','2024-05-20 09:02:01','root@172.19.0.1'),(3,2,6,0,'2024-05-20 09:02:01','2024-05-20 09:02:01','root@172.19.0.1'),(4,3,5,0,'2024-05-20 09:02:01','2024-05-20 09:02:01','root@172.19.0.1'),(5,3,6,0,'2024-05-20 09:02:01','2024-05-20 09:02:01','root@172.19.0.1'),(6,3,7,0,'2024-05-20 09:02:01','2024-05-20 09:02:01','root@172.19.0.1'),(18,7,8,0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(19,7,5,0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(20,8,9,0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(21,8,8,0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(22,8,5,0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(23,8,6,0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(24,9,7,0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(25,9,6,0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(26,9,5,0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(27,9,8,0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(28,9,9,0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(29,10,8,0,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1'),(30,10,5,0,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1'),(32,11,8,0,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1'),(33,11,5,0,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1'),(34,11,6,0,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1'),(35,12,6,0,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1'),(36,12,5,0,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1'),(37,12,8,0,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1'),(39,7,10,0,'2024-05-22 07:54:05','2024-05-22 07:54:05','root@172.19.0.1'),(40,8,10,0,'2024-05-22 07:54:05','2024-05-22 07:54:05','root@172.19.0.1'),(41,9,10,0,'2024-05-22 07:54:05','2024-05-22 07:54:05','root@172.19.0.1'),(42,10,10,0,'2024-05-22 07:54:05','2024-05-22 07:54:05','root@172.19.0.1'),(43,11,10,0,'2024-05-22 07:54:05','2024-05-22 07:54:05','root@172.19.0.1'),(44,12,10,0,'2024-05-22 07:54:05','2024-05-22 07:54:05','root@172.19.0.1'),(45,8,11,0,'2024-05-22 07:54:05','2024-05-22 07:54:05','root@172.19.0.1'),(46,9,11,0,'2024-05-22 07:54:05','2024-05-22 07:54:05','root@172.19.0.1'),(47,11,11,0,'2024-05-22 07:54:05','2024-05-22 07:54:05','root@172.19.0.1'),(48,12,11,0,'2024-05-22 07:54:05','2024-05-22 07:54:05','root@172.19.0.1'),(49,8,12,0,'2024-05-22 07:54:06','2024-05-22 07:54:06','root@172.19.0.1'),(50,9,12,0,'2024-05-22 07:54:06','2024-05-22 07:54:06','root@172.19.0.1'),(51,9,13,0,'2024-05-22 07:54:06','2024-05-22 07:54:06','root@172.19.0.1'),(52,13,8,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(53,13,5,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(54,14,9,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(55,14,8,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(56,14,5,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(57,14,6,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(58,15,7,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(59,15,6,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(60,15,5,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(61,15,8,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(62,15,9,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(63,16,8,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(64,16,5,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(65,17,8,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(66,17,5,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(67,17,6,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(68,18,6,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(69,18,5,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(70,18,8,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(71,13,10,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(72,14,10,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(73,15,10,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(74,16,10,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(75,17,10,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(76,18,10,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(77,14,11,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(78,15,11,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(79,17,11,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(80,18,11,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(81,14,12,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(82,15,12,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(83,15,13,0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(84,18,7,0,'2024-06-17 08:48:52','2024-06-17 08:48:52','root@172.19.0.1'),(86,12,7,0,'2024-06-17 08:49:24','2024-06-17 08:49:24','root@172.19.0.1'); +/*!40000 ALTER TABLE `access_role_permission_mappings` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_access_role_permission_mappings_insert_trigger BEFORE INSERT ON access_role_permission_mappings +FOR EACH ROW BEGIN + SET NEW.creation_date=NOW(); + SET NEW.last_updated_by=USER(); + SET NEW.last_update=NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_access_role_permission_mappings_update_trigger BEFORE UPDATE ON access_role_permission_mappings +FOR EACH ROW +BEGIN + SET NEW.last_updated_by=USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `access_role_tag_mappings` +-- + +DROP TABLE IF EXISTS `access_role_tag_mappings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `access_role_tag_mappings` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `access_role_id` int(11) NOT NULL, + `tag` varchar(250) NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `access_role_id` (`access_role_id`,`tag`) +) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `access_role_tag_mappings` +-- + +LOCK TABLES `access_role_tag_mappings` WRITE; +/*!40000 ALTER TABLE `access_role_tag_mappings` DISABLE KEYS */; +INSERT INTO `access_role_tag_mappings` VALUES (1,4,'AGENCY',0,'2024-05-20 09:24:42','2024-05-20 09:24:42','hadesDbSvcUser@172.19.0.1'),(2,5,'AGENCY',0,'2024-05-20 09:24:46','2024-05-20 09:24:46','hadesDbSvcUser@172.19.0.1'),(3,6,'AGENCY',0,'2024-05-20 09:24:50','2024-05-20 09:24:50','hadesDbSvcUser@172.19.0.1'),(4,7,'AGENCY',0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(5,8,'AGENCY',0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(6,9,'AGENCY',0,'2024-05-21 12:58:36','2024-05-21 12:58:36','root@172.19.0.1'),(7,10,'CLIENT',0,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1'),(8,11,'CLIENT',0,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1'),(9,12,'CLIENT',0,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1'),(10,13,'AGENCY',0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(11,14,'AGENCY',0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(12,15,'AGENCY',0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(13,16,'CLIENT',0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(14,17,'CLIENT',0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'),(15,18,'CLIENT',0,'2024-05-23 06:21:06','2024-05-23 06:21:06','root@172.19.0.1'); +/*!40000 ALTER TABLE `access_role_tag_mappings` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_access_role_tag_mappings_insert_trigger BEFORE INSERT ON access_role_tag_mappings +FOR EACH ROW BEGIN + SET NEW.creation_date=NOW(); + SET NEW.last_updated_by=USER(); + SET NEW.last_update=NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_access_role_tag_mappings_update_trigger BEFORE UPDATE ON access_role_tag_mappings +FOR EACH ROW +BEGIN + SET NEW.last_updated_by=USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `access_roles` +-- + +DROP TABLE IF EXISTS `access_roles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `access_roles` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` char(32) DEFAULT NULL, + `agency_id` int(11) NOT NULL DEFAULT '-1', + `alias` varchar(250) NOT NULL DEFAULT '', + `description` varchar(1024) DEFAULT NULL, + `user_id` int(11) NOT NULL DEFAULT '-1', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`), + KEY `ar_index_agency` (`agency_id`) +) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `access_roles` +-- + +LOCK TABLES `access_roles` WRITE; +/*!40000 ALTER TABLE `access_roles` DISABLE KEYS */; +INSERT INTO `access_roles` VALUES (1,'READ',-1,'',NULL,-1,'2024-05-20 08:57:13','2024-05-20 08:57:13','root@172.19.0.1',0),(2,'READ_WRITE',-1,'',NULL,-1,'2024-05-20 08:57:13','2024-05-20 08:57:13','root@172.19.0.1',0),(3,'ADMIN',-1,'',NULL,-1,'2024-05-20 08:57:13','2024-05-20 08:57:13','root@172.19.0.1',0),(7,'1_TVING_AGENCY_READ',1,'Read',NULL,4661,'2024-05-21 12:58:36','2024-05-21 13:00:49','root@172.19.0.1',0),(8,'1_TVING_AGENCY_WRITE',1,'Write',NULL,4661,'2024-05-21 12:58:36','2024-05-21 13:00:57','root@172.19.0.1',0),(9,'1_TVING_AGENCY_ADMIN',1,'Admin',NULL,4661,'2024-05-21 12:58:36','2024-05-21 13:01:04','root@172.19.0.1',0),(10,'1_TVING_CLIENT_READ',1,'Read',NULL,4661,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1',0),(11,'1_TVING_CLIENT_WRITE',1,'Write',NULL,4661,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1',0),(12,'1_TVING_CLIENT_ADMIN',1,'Account Manager',NULL,4661,'2024-05-21 13:02:34','2024-05-21 13:02:34','root@172.19.0.1',0),(13,'2_TVING_AGENCY_READ',2,'Read',NULL,4661,'2024-05-23 06:21:06','2024-05-23 06:22:51','root@172.19.0.1',0),(14,'2_TVING_AGENCY_WRITE',2,'Write',NULL,4661,'2024-05-23 06:21:06','2024-05-23 06:22:51','root@172.19.0.1',0),(15,'2_TVING_AGENCY_ADMIN',2,'Admin',NULL,4661,'2024-05-23 06:21:06','2024-05-23 06:22:51','root@172.19.0.1',0),(16,'2_TVING_CLIENT_READ',2,'Read',NULL,4661,'2024-05-23 06:21:06','2024-05-23 06:22:51','root@172.19.0.1',0),(17,'2_TVING_CLIENT_WRITE',2,'Write',NULL,4661,'2024-05-23 06:21:06','2024-05-23 06:22:51','root@172.19.0.1',0),(18,'2_TVING_CLIENT_ADMIN',2,'Account Manager',NULL,4661,'2024-05-23 06:21:06','2024-05-23 06:22:51','root@172.19.0.1',0); +/*!40000 ALTER TABLE `access_roles` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_access_roles_insert_trigger BEFORE INSERT ON hades_db.access_roles +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_access_roles_update_trigger BEFORE UPDATE ON hades_db.access_roles +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `agencies` +-- + +DROP TABLE IF EXISTS `agencies`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `agencies` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` char(250) NOT NULL, + `parent_agency_id` int(11) NOT NULL, + `status_type_id` int(11) NOT NULL, + `marketplace_client_id` int(11) DEFAULT NULL, + `agency_type` varchar(50) DEFAULT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `agencies` +-- + +LOCK TABLES `agencies` WRITE; +/*!40000 ALTER TABLE `agencies` DISABLE KEYS */; +/*!40000 ALTER TABLE `agencies` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_agencies_insert_trigger BEFORE INSERT ON hades_db.agencies +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_agencies_after_insert_trigger AFTER INSERT ON hades_db.agencies +FOR EACH ROW +BEGIN + + call create_single_agency_hierarchy(NEW.id, NEW.name, NEW.status_type_id); + + insert into user_agency_mappings (user_id, agency_id, access_role_id, status_type_id, end_user_id) values (4661, new.id, 3, 1, 4661); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_agencies_update_trigger BEFORE UPDATE ON hades_db.agencies +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_agencies_update_trigger2 AFTER UPDATE ON hades_db.agencies +FOR EACH ROW +BEGIN + IF NEW.status_type_id <> OLD.status_type_id OR NEW.name <> OLD.name THEN + UPDATE agencies_flattened + SET status_type_id= NEW.status_type_id, name= NEW.name + WHERE agency_id = NEW.id; + END IF; +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `agencies_flattened` +-- + +DROP TABLE IF EXISTS `agencies_flattened`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `agencies_flattened` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `agency_id` int(11) NOT NULL, + `name` char(250) NOT NULL, + `ancestor_agency_id` int(11) NOT NULL, + `level` int(11) NOT NULL, + `status_type_id` int(11) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `agency_id` (`agency_id`,`ancestor_agency_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `agencies_flattened` +-- + +LOCK TABLES `agencies_flattened` WRITE; +/*!40000 ALTER TABLE `agencies_flattened` DISABLE KEYS */; +/*!40000 ALTER TABLE `agencies_flattened` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_agencies_flattened_insert_trigger BEFORE INSERT ON hades_db.agencies_flattened +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_agencies_flattened_update_trigger BEFORE UPDATE ON hades_db.agencies_flattened +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `agencies_id_generator` +-- + +DROP TABLE IF EXISTS `agencies_id_generator`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `agencies_id_generator` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `agencies_id_generator` +-- + +LOCK TABLES `agencies_id_generator` WRITE; +/*!40000 ALTER TABLE `agencies_id_generator` DISABLE KEYS */; +INSERT INTO `agencies_id_generator` VALUES (1,'Tving Staging',NULL,NULL,NULL),(2,'Tving QA',NULL,NULL,NULL),(3,'rms-staging2-marketplace',NULL,NULL,NULL); +/*!40000 ALTER TABLE `agencies_id_generator` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `app_contexts` +-- + +DROP TABLE IF EXISTS `app_contexts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `app_contexts` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `app_id` int(11) NOT NULL, + `app_key` varchar(100) NOT NULL, + `context` varchar(2000) DEFAULT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `app_id` (`app_id`,`app_key`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `app_contexts` +-- + +LOCK TABLES `app_contexts` WRITE; +/*!40000 ALTER TABLE `app_contexts` DISABLE KEYS */; +/*!40000 ALTER TABLE `app_contexts` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_app_contexts_insert_trigger BEFORE INSERT ON hades_db.app_contexts +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_app_contexts_update_trigger BEFORE UPDATE ON hades_db.app_contexts +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `app_ips_accesses` +-- + +DROP TABLE IF EXISTS `app_ips_accesses`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `app_ips_accesses` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `app_id` int(11) NOT NULL, + `ipaddress` varchar(50) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `app_id` (`app_id`,`ipaddress`) +) ENGINE=InnoDB AUTO_INCREMENT=128 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `app_ips_accesses` +-- + +LOCK TABLES `app_ips_accesses` WRITE; +/*!40000 ALTER TABLE `app_ips_accesses` DISABLE KEYS */; +INSERT INTO `app_ips_accesses` VALUES (2,3,'123.201.125.26','2024-05-20 09:33:12','2024-05-20 09:33:12','hadesDbSvcUser@172.19.0.1',0),(3,3,'178.63.23.164','2024-05-20 09:33:53','2024-05-20 09:33:53','hadesDbSvcUser@172.19.0.1',0),(5,4,'127.0.0.1','2024-05-20 11:12:55','2024-05-20 11:12:55','root@172.19.0.1',0),(6,4,'178.63.23.164','2024-05-20 11:13:48','2024-05-20 11:13:48','root@172.19.0.1',0),(7,5,'123.201.125.26','2024-05-20 11:36:36','2024-05-20 11:36:36','root@172.19.0.1',0),(8,5,'116.202.49.48','2024-05-20 11:57:08','2024-05-20 11:57:08','root@172.19.0.1',0),(9,6,'178.63.23.164','2024-05-20 11:59:58','2024-05-20 11:59:58','hadesDbSvcUser@172.19.0.1',0),(10,6,'116.202.49.48','2024-05-20 11:59:58','2024-05-20 11:59:58','hadesDbSvcUser@172.19.0.1',0),(11,7,'178.63.23.164','2024-05-20 12:18:35','2024-05-20 12:18:35','hadesDbSvcUser@172.19.0.1',0),(12,7,'116.202.49.48','2024-05-20 12:18:38','2024-05-20 12:18:38','hadesDbSvcUser@172.19.0.1',0),(13,8,'178.63.23.164','2024-05-20 12:32:22','2024-05-20 12:32:22','hadesDbSvcUser@172.19.0.1',0),(14,8,'116.202.49.48','2024-05-20 12:32:23','2024-05-20 12:32:23','hadesDbSvcUser@172.19.0.1',0),(15,9,'178.63.23.164','2024-05-20 13:03:09','2024-05-20 13:03:09','hadesDbSvcUser@172.19.0.1',0),(17,10,'178.63.23.164','2024-05-20 13:26:43','2024-05-20 13:26:43','hadesDbSvcUser@172.19.0.1',0),(18,10,'116.202.49.48','2024-05-20 13:26:45','2024-05-20 13:26:45','hadesDbSvcUser@172.19.0.1',0),(19,11,'178.63.23.164','2024-05-20 13:45:33','2024-05-20 13:45:33','hadesDbSvcUser@172.19.0.1',0),(20,11,'116.202.49.48','2024-05-20 13:45:37','2024-05-20 13:45:37','hadesDbSvcUser@172.19.0.1',0),(21,9,'116.202.49.48','2024-05-21 03:48:45','2024-05-21 03:48:45','hadesDbSvcUser@172.19.0.1',0),(22,12,'178.63.23.164','2024-05-21 05:42:10','2024-05-21 05:42:10','hadesDbSvcUser@172.19.0.1',0),(23,12,'116.202.49.48','2024-05-21 05:42:10','2024-05-21 05:42:10','hadesDbSvcUser@172.19.0.1',0),(24,13,'178.63.23.164','2024-05-21 06:07:27','2024-05-21 06:07:27','hadesDbSvcUser@172.19.0.1',0),(25,14,'178.63.23.164','2024-05-21 06:26:18','2024-05-21 06:26:18','hadesDbSvcUser@172.19.0.1',0),(26,14,'116.202.49.48','2024-05-21 06:26:18','2024-05-21 06:26:18','hadesDbSvcUser@172.19.0.1',0),(28,15,'178.63.23.164','2024-05-21 08:07:27','2024-05-21 08:07:27','hadesDbSvcUser@172.19.0.1',0),(29,15,'116.202.49.48','2024-05-21 08:07:28','2024-05-21 08:07:28','hadesDbSvcUser@172.19.0.1',0),(30,16,'178.63.23.164','2024-05-21 09:42:16','2024-05-21 09:42:16','hadesDbSvcUser@172.19.0.1',0),(31,16,'116.202.49.48','2024-05-21 09:43:05','2024-05-21 09:43:05','hadesDbSvcUser@172.19.0.1',0),(32,17,'178.63.23.164','2024-05-21 09:43:47','2024-05-21 09:43:47','hadesDbSvcUser@172.19.0.1',0),(33,17,'116.202.49.48','2024-05-21 09:44:36','2024-05-21 09:44:36','hadesDbSvcUser@172.19.0.1',0),(34,18,'178.63.23.164','2024-05-21 10:25:36','2024-05-21 10:25:36','hadesDbSvcUser@172.19.0.1',0),(35,19,'178.63.23.164','2024-05-21 10:49:42','2024-05-21 10:49:42','hadesDbSvcUser@172.19.0.1',0),(36,12,'123.201.125.26','2024-05-23 06:35:42','2024-05-23 06:35:42','root@172.19.0.1',0),(37,12,'125.99.72.126','2024-05-23 08:30:01','2024-05-23 08:30:01','root@172.19.0.1',0),(39,12,'178.63.179.32','2024-05-24 06:46:35','2024-05-24 06:46:35','hadesDbSvcUser@172.19.0.1',0),(40,14,'35.198.209.215','2024-05-24 06:54:36','2024-05-24 06:54:36','hadesDbSvcUser@172.19.0.1',0),(41,20,'178.63.23.164','2024-05-24 07:16:45','2024-05-24 07:16:45','hadesDbSvcUser@172.19.0.1',0),(42,20,'116.202.49.48','2024-05-24 07:19:35','2024-05-24 07:19:35','hadesDbSvcUser@172.19.0.1',0),(43,21,'178.63.23.164','2024-05-24 07:43:53','2024-05-24 07:43:53','hadesDbSvcUser@172.19.0.1',0),(44,21,'116.202.49.48','2024-05-24 07:43:53','2024-05-24 07:43:53','hadesDbSvcUser@172.19.0.1',0),(45,22,'178.63.23.164','2024-05-24 07:56:30','2024-05-24 07:56:30','hadesDbSvcUser@172.19.0.1',0),(46,22,'116.202.49.48','2024-05-24 07:56:30','2024-05-24 07:56:30','hadesDbSvcUser@172.19.0.1',0),(47,23,'178.63.23.164','2024-05-24 08:04:27','2024-05-24 08:04:27','hadesDbSvcUser@172.19.0.1',0),(48,23,'116.202.49.48','2024-05-24 08:04:27','2024-05-24 08:04:27','hadesDbSvcUser@172.19.0.1',0),(49,12,'35.198.209.215','2024-05-24 10:38:31','2024-05-24 10:38:31','root@172.19.0.1',0),(50,23,'35.198.209.215','2024-05-29 06:25:44','2024-05-29 06:25:44','hadesDbSvcUser@172.19.0.1',0),(51,12,'152.52.38.14','2024-06-03 11:23:15','2024-06-03 11:23:15','root@172.19.0.1',0),(52,23,'152.52.38.14','2024-06-03 11:41:25','2024-06-03 11:41:25','root@172.19.0.1',0),(53,23,'178.63.179.32','2024-06-04 08:55:30','2024-06-04 08:55:30','hadesDbSvcUser@172.19.0.1',0),(54,22,'152.52.38.14','2024-06-06 05:51:20','2024-06-06 05:51:20','root@172.19.0.1',0),(55,22,'178.63.179.32','2024-06-06 06:03:21','2024-06-06 06:03:21','hadesDbSvcUser@172.19.0.1',0),(56,24,'116.202.49.48','2024-06-10 11:57:31','2024-06-10 11:57:31','hadesDbSvcUser@172.19.0.1',0),(57,24,'178.63.23.164','2024-06-10 11:59:52','2024-06-10 11:59:52','hadesDbSvcUser@172.19.0.1',0),(58,25,'178.63.23.164','2024-06-12 12:42:35','2024-06-12 12:42:35','hadesDbSvcUser@172.19.0.1',0),(59,25,'116.202.49.48','2024-06-12 12:42:56','2024-06-12 12:42:56','hadesDbSvcUser@172.19.0.1',0),(60,26,'178.63.23.164','2024-06-12 15:35:42','2024-06-12 15:35:42','hadesDbSvcUser@172.19.0.1',0),(61,26,'116.202.49.48','2024-06-12 15:35:57','2024-06-12 15:35:57','hadesDbSvcUser@172.19.0.1',0),(62,14,'152.52.38.14','2024-06-12 15:57:10','2024-06-12 15:57:10','root@172.19.0.1',0),(63,27,'116.202.49.48','2024-06-12 18:00:59','2024-06-12 18:00:59','hadesDbSvcUser@172.19.0.1',0),(64,27,'178.63.23.164','2024-06-12 18:01:54','2024-06-12 18:01:54','hadesDbSvcUser@172.19.0.1',0),(65,28,'178.63.23.164','2024-06-13 07:47:14','2024-06-13 07:47:14','hadesDbSvcUser@172.19.0.1',0),(66,29,'116.202.49.48','2024-06-13 11:48:25','2024-06-13 11:48:25','hadesDbSvcUser@172.19.0.1',0),(67,30,'178.63.23.164','2024-06-13 11:55:45','2024-06-13 11:55:45','hadesDbSvcUser@172.19.0.1',0),(68,29,'178.63.23.164','2024-06-13 12:07:07','2024-06-13 12:07:07','hadesDbSvcUser@172.19.0.1',0),(69,12,'159.69.60.175','2024-06-13 14:34:59','2024-06-13 14:34:59','hadesDbSvcUser@172.19.0.1',0),(70,28,'116.202.49.48','2024-06-13 14:36:19','2024-06-13 14:36:19','hadesDbSvcUser@172.19.0.1',0),(71,28,'159.69.60.175','2024-06-13 14:36:46','2024-06-13 14:36:46','hadesDbSvcUser@172.19.0.1',0),(72,1,'116.202.49.48','2024-06-17 09:36:06','2024-06-17 09:36:06','hadesDbSvcUser@172.19.0.1',0),(73,1,'123.201.125.26','2024-06-17 11:40:03','2024-06-17 11:40:03','root@172.19.0.1',0),(74,1,'176.9.36.14','2024-06-20 08:43:12','2024-06-20 08:43:12','hadesDbSvcUser@172.19.0.1',0),(75,31,'116.202.49.48','2024-06-21 10:57:39','2024-06-21 10:57:39','hadesDbSvcUser@172.19.0.1',0),(76,31,'178.63.23.164','2024-06-21 10:57:52','2024-06-21 10:57:52','hadesDbSvcUser@172.19.0.1',0),(77,32,'116.202.49.48','2024-06-21 11:19:35','2024-06-21 11:19:35','hadesDbSvcUser@172.19.0.1',0),(78,33,'178.63.23.164','2024-06-21 13:07:59','2024-06-21 13:07:59','hadesDbSvcUser@172.19.0.1',0),(79,34,'178.63.23.164','2024-06-21 13:19:14','2024-06-21 13:19:14','hadesDbSvcUser@172.19.0.1',0),(80,34,'116.202.49.48','2024-06-21 13:39:41','2024-06-21 13:39:41','hadesDbSvcUser@172.19.0.1',0),(81,32,'167.235.33.237','2024-06-21 13:44:05','2024-06-21 13:44:05','hadesDbSvcUser@172.19.0.1',0),(82,32,'167.235.33.236','2024-06-21 13:44:05','2024-06-21 13:44:05','hadesDbSvcUser@172.19.0.1',0),(83,32,'46.4.96.120','2024-06-21 13:44:05','2024-06-21 13:44:05','hadesDbSvcUser@172.19.0.1',0),(84,32,'136.243.176.51','2024-06-21 13:44:05','2024-06-21 13:44:05','hadesDbSvcUser@172.19.0.1',0),(85,35,'178.63.23.164','2024-06-23 08:16:05','2024-06-23 08:16:05','hadesDbSvcUser@172.19.0.1',0),(86,35,'116.202.49.48','2024-06-23 08:16:50','2024-06-23 08:16:50','hadesDbSvcUser@172.19.0.1',0),(87,35,'167.235.33.237','2024-06-23 10:23:21','2024-06-23 10:23:21','hadesDbSvcUser@172.19.0.1',0),(88,35,'167.235.33.236','2024-06-23 10:23:21','2024-06-23 10:23:21','hadesDbSvcUser@172.19.0.1',0),(89,35,'46.4.96.120','2024-06-23 10:23:21','2024-06-23 10:23:21','hadesDbSvcUser@172.19.0.1',0),(90,35,'136.243.176.51','2024-06-23 10:23:21','2024-06-23 10:23:21','hadesDbSvcUser@172.19.0.1',0),(91,36,'167.235.33.237','2024-06-23 14:19:35','2024-06-23 14:19:35','hadesDbSvcUser@172.19.0.1',0),(92,36,'167.235.33.236','2024-06-23 14:19:35','2024-06-23 14:19:35','hadesDbSvcUser@172.19.0.1',0),(93,36,'46.4.96.120','2024-06-23 14:19:35','2024-06-23 14:19:35','hadesDbSvcUser@172.19.0.1',0),(94,36,'136.243.176.51','2024-06-23 14:19:35','2024-06-23 14:19:35','hadesDbSvcUser@172.19.0.1',0),(95,36,'178.63.23.164','2024-06-23 14:19:53','2024-06-23 14:19:53','hadesDbSvcUser@172.19.0.1',0),(96,32,'178.63.23.164','2024-06-24 06:49:31','2024-06-24 06:49:31','hadesDbSvcUser@172.19.0.1',0),(97,37,'167.235.33.237','2024-06-24 11:46:46','2024-06-24 11:46:46','hadesDbSvcUser@172.19.0.1',0),(98,37,'167.235.33.236','2024-06-24 11:46:46','2024-06-24 11:46:46','hadesDbSvcUser@172.19.0.1',0),(99,37,'46.4.96.120','2024-06-24 11:46:46','2024-06-24 11:46:46','hadesDbSvcUser@172.19.0.1',0),(100,37,'136.243.176.51','2024-06-24 11:46:46','2024-06-24 11:46:46','hadesDbSvcUser@172.19.0.1',0),(101,37,'178.63.23.164','2024-06-24 11:46:46','2024-06-24 11:46:46','hadesDbSvcUser@172.19.0.1',0),(102,37,'116.202.49.48','2024-06-24 11:47:16','2024-06-24 11:47:16','hadesDbSvcUser@172.19.0.1',0),(103,38,'178.63.23.164','2024-06-25 06:00:30','2024-06-25 06:00:30','hadesDbSvcUser@172.19.0.1',0),(104,38,'116.202.49.48','2024-06-25 06:00:59','2024-06-25 06:00:59','hadesDbSvcUser@172.19.0.1',0),(105,38,'167.235.33.237','2024-06-25 06:02:07','2024-06-25 06:02:07','hadesDbSvcUser@172.19.0.1',0),(106,38,'167.235.33.236','2024-06-25 06:02:07','2024-06-25 06:02:07','hadesDbSvcUser@172.19.0.1',0),(107,38,'46.4.96.120','2024-06-25 06:02:07','2024-06-25 06:02:07','hadesDbSvcUser@172.19.0.1',0),(108,38,'136.243.176.51','2024-06-25 06:02:07','2024-06-25 06:02:07','hadesDbSvcUser@172.19.0.1',0),(109,39,'116.202.49.48','2024-06-25 06:05:23','2024-06-25 06:05:23','hadesDbSvcUser@172.19.0.1',0),(110,39,'167.235.33.237','2024-06-25 06:05:43','2024-06-25 06:05:43','hadesDbSvcUser@172.19.0.1',0),(111,39,'167.235.33.236','2024-06-25 06:05:43','2024-06-25 06:05:43','hadesDbSvcUser@172.19.0.1',0),(112,39,'46.4.96.120','2024-06-25 06:05:43','2024-06-25 06:05:43','hadesDbSvcUser@172.19.0.1',0),(113,39,'136.243.176.51','2024-06-25 06:05:43','2024-06-25 06:05:43','hadesDbSvcUser@172.19.0.1',0),(114,40,'167.235.33.237','2024-06-26 17:17:51','2024-06-26 17:17:51','hadesDbSvcUser@172.19.0.1',0),(115,40,'167.235.33.236','2024-06-26 17:17:51','2024-06-26 17:17:51','hadesDbSvcUser@172.19.0.1',0),(116,40,'46.4.96.120','2024-06-26 17:17:51','2024-06-26 17:17:51','hadesDbSvcUser@172.19.0.1',0),(117,40,'136.243.176.51','2024-06-26 17:17:51','2024-06-26 17:17:51','hadesDbSvcUser@172.19.0.1',0),(118,40,'178.63.23.164','2024-06-26 17:17:51','2024-06-26 17:17:51','hadesDbSvcUser@172.19.0.1',0),(119,11,'159.69.60.175','2024-08-08 07:14:51','2024-08-08 07:14:51','root@172.19.0.1',0),(120,41,'116.202.49.48','2024-09-26 05:47:21','2024-09-26 05:47:21','hadesDbSvcUser@172.19.0.1',0),(121,41,'178.63.23.164','2024-09-26 06:15:10','2024-09-26 06:15:10','hadesDbSvcUser@172.19.0.1',0),(122,1,'178.63.23.164','2024-10-07 10:48:54','2024-10-07 10:48:54','hadesDbSvcUser@172.19.0.1',0),(123,12,'123.201.125.27','2024-11-18 13:18:06','2024-11-18 13:18:06','staging_rw@172.19.0.1',0),(124,42,'178.63.23.164','2024-12-10 05:25:13','2024-12-10 05:25:13','hadesDbSvcUser@172.19.0.1',0),(125,43,'116.202.49.48','2025-04-30 08:52:57','2025-04-30 08:52:57','hadesDbSvcUser@172.19.0.1',0),(126,43,'178.63.23.164','2025-04-30 08:53:17','2025-04-30 08:53:17','hadesDbSvcUser@172.19.0.1',0),(127,43,'35.198.209.215','2025-04-30 08:56:23','2025-04-30 08:56:23','hadesDbSvcUser@172.19.0.1',0); +/*!40000 ALTER TABLE `app_ips_accesses` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_app_ips_accesses_insert_trigger BEFORE INSERT ON hades_db.app_ips_accesses +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_app_ips_accesses_update_trigger BEFORE UPDATE ON hades_db.app_ips_accesses +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `apps` +-- + +DROP TABLE IF EXISTS `apps`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `apps` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(50) CHARACTER SET latin1 NOT NULL, + `token` char(100) NOT NULL, + `team_id` int(11) NOT NULL DEFAULT '18', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`), + UNIQUE KEY `token` (`token`) +) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `apps` +-- + +LOCK TABLES `apps` WRITE; +/*!40000 ALTER TABLE `apps` DISABLE KEYS */; +INSERT INTO `apps` VALUES (1,'irisTestApplication','',8,'2024-05-20 09:15:34','2024-05-20 09:15:34','hadesDbSvcUser@172.19.0.1',0),(3,'sokratiLiveService','sokratiLiveService',8,'2024-05-20 09:32:52','2024-05-20 09:32:52','hadesDbSvcUser@172.19.0.1',0),(4,'nagios','nagios',8,'2024-05-20 11:11:12','2024-05-20 11:11:12','root@172.19.0.1',0),(5,'hadesAccessor','hadesAccessor',8,'2024-05-20 11:35:59','2024-05-20 11:35:59','root@172.19.0.1',0),(6,'onBoardingServiceV2','RLAXvyZ64CbVrHYfOi8pDq+3dPlHE8r5uyVnvQdS1yZdVitfI+Fcgu2C+noYobni',8,'2024-05-20 11:59:58','2024-05-20 11:59:58','hadesDbSvcUser@172.19.0.1',0),(7,'osBulkActionsService','gN5PDOliWJAUMxisatGTta0Xc8b8x+CPUm0QRgV7Oa9dVitfI+Fcgu2C+noYobni',8,'2024-05-20 12:18:35','2024-05-20 12:18:35','hadesDbSvcUser@172.19.0.1',0),(8,'changeHistoryService','uk0D3eufxzouDz+Np+BQSaCGBxpSY+3tYZ7ynmm/woVdVitfI+Fcgu2C+noYobni',8,'2024-05-20 12:32:22','2024-05-20 12:32:22','hadesDbSvcUser@172.19.0.1',0),(9,'changeLogEventConsumer','08s+1eoLcEhXwDbBE3NZYuFuz2a2h+ZOQpEAfCtoKO1dVitfI+Fcgu2C+noYobni',8,'2024-05-20 13:03:09','2024-05-20 13:03:09','hadesDbSvcUser@172.19.0.1',0),(10,'notificationsServiceV2Test','9F9lboRcX+5fFBi3RHMZXS8pMiav0GCKk+FUptVwKQtdVitfI+Fcgu2C+noYobni',8,'2024-05-20 13:26:42','2024-05-20 13:26:42','hadesDbSvcUser@172.19.0.1',0),(11,'HADES','BLGK1mzVn+nHFT6QUrwxbkysWtgE1EkecGlzDNkYeKRdVitfI+Fcgu2C+noYobni',8,'2024-05-20 13:45:33','2024-05-20 13:45:33','hadesDbSvcUser@172.19.0.1',0),(12,'osPackageSvc','jya7De6YYQ9N9Rb8sx+Nipi/fr7rrBUxfnjtIEQ16+pdVitfI+Fcgu2C+noYobni',8,'2024-05-21 05:42:09','2024-05-21 05:42:09','hadesDbSvcUser@172.19.0.1',0),(13,'shopsUIServices','6HG8KrsUN/H7n24UPa1eX1KM460ie+6aD60s9O3gG8xdVitfI+Fcgu2C+noYobni',8,'2024-05-21 06:07:27','2024-05-21 06:07:27','hadesDbSvcUser@172.19.0.1',0),(14,'kamService','wLFCs1voFm5D5RbAD2atzwaV1CfJE0aeJ1NnPsffllldVitfI+Fcgu2C+noYobni',8,'2024-05-21 06:26:18','2024-05-21 06:26:18','hadesDbSvcUser@172.19.0.1',0),(15,'osBulkActionProcessor','G/BSf6wIPHUA0muC2B7Ntrc20vN1Y27vJYiAB/e5a9ZdVitfI+Fcgu2C+noYobni',8,'2024-05-21 08:07:27','2024-05-21 08:07:27','hadesDbSvcUser@172.19.0.1',0),(16,'sokratiShopsService','5ZirolAfAGd8O8howxn9/rSanAaRNMYdZt/JdHW+aQVdVitfI+Fcgu2C+noYobni',8,'2024-05-21 09:42:16','2024-05-21 09:42:16','hadesDbSvcUser@172.19.0.1',0),(17,'adwordsAccessorService','gxwMLphfzC6MA3WdmUPqlazHzscb+SE+5qfCBqeHLHddVitfI+Fcgu2C+noYobni',8,'2024-05-21 09:43:47','2024-05-21 09:43:47','hadesDbSvcUser@172.19.0.1',0),(18,'configurationDbService','v+pBHeLeEmbeG04dcQrbYfn+tg9TG8BOl8Bg4/RCz11dVitfI+Fcgu2C+noYobni',8,'2024-05-21 10:25:36','2024-05-21 10:25:36','hadesDbSvcUser@172.19.0.1',0),(19,'clientInputService','RcKT4KR/GCUiho1RoPVRjIpBj73XxtogQSPwR2RPPtpdVitfI+Fcgu2C+noYobni',8,'2024-05-21 10:49:42','2024-05-21 10:49:42','hadesDbSvcUser@172.19.0.1',0),(20,'creativeUploadService','iySOGbrlHAAggRO0NjDfD9wsLFIXHeKz0EyNYnvzcttdVitfI+Fcgu2C+noYobni',8,'2024-05-24 07:16:45','2024-05-24 07:16:45','hadesDbSvcUser@172.19.0.1',0),(21,'commentsService','o0wxzQ4EpDIsBsuMPOTTUkoFNGbFmXGM5xHHRSXdeahdVitfI+Fcgu2C+noYobni',8,'2024-05-24 07:43:53','2024-05-24 07:43:53','hadesDbSvcUser@172.19.0.1',0),(22,'reviewServiceConsumer','rEntGdhLyhoR/9jCfEmIc87XlUSzZQgj9oc+JfF6LgtdVitfI+Fcgu2C+noYobni',8,'2024-05-24 07:56:30','2024-05-24 07:56:30','hadesDbSvcUser@172.19.0.1',0),(23,'reviewService','u056vhiubfmtGAaS3qoJRhjMqCOEoZ+U2fQAZxF1xMhdVitfI+Fcgu2C+noYobni',8,'2024-05-24 08:04:27','2024-05-24 08:04:27','hadesDbSvcUser@172.19.0.1',0),(24,'osPackageSvcScripts','RQq62wVeeaeNc60HD0GdPFYURUNN7naL/1d0JTb0ogU=',15,'2024-06-10 11:57:31','2024-06-10 11:57:31','hadesDbSvcUser@172.19.0.1',0),(25,'marketingCampaignSvcV2','g3HR63wn5DOmD3mTNosChNqpbOrpNqZf1Wo9WSguS8ZdVitfI+Fcgu2C+noYobni',16,'2024-06-12 12:42:35','2024-06-12 12:42:35','hadesDbSvcUser@172.19.0.1',0),(26,'molocoLauncher','4DH7bzEPTQ4s0CPFoz3UODSn2gKz6UpmgUFArYwO281dVitfI+Fcgu2C+noYobni',15,'2024-06-12 15:35:42','2024-06-12 15:35:42','hadesDbSvcUser@172.19.0.1',0),(27,'taggingService','IdegcKs0XzD3DQwff/kfCFo/RYL10e5+7eq/eOEC3lhdVitfI+Fcgu2C+noYobni',15,'2024-06-12 18:00:59','2024-06-12 18:00:59','hadesDbSvcUser@172.19.0.1',0),(28,'jobSchedulerEventConsumer','dv9D3zRyGR5mGD+tqWutJY3JaZiOc9AHAp2Wxd77QiU=',8,'2024-06-13 07:47:14','2024-06-13 07:47:14','hadesDbSvcUser@172.19.0.1',0),(29,'sofieHygieneChecker','y0h+hl2mM5XGeaRMPjG6YWGqcncUvWxfdIwl/cR7MCVdVitfI+Fcgu2C+noYobni',15,'2024-06-13 11:48:25','2024-06-13 11:48:25','hadesDbSvcUser@172.19.0.1',0),(30,'preflightHealer','Sspa2x1foGy+mlCHRTLFJekn0jH75btfQLwW+QnuAYhdVitfI+Fcgu2C+noYobni',15,'2024-06-13 11:55:45','2024-06-13 11:55:45','hadesDbSvcUser@172.19.0.1',0),(31,'accountUpdateEventConsumer','aUj8V/Y4WCA1Bh5Ds90BLTIiNtTPaIhPcNLtD1p6RrxdVitfI+Fcgu2C+noYobni',15,'2024-06-21 10:57:39','2024-06-21 10:57:39','hadesDbSvcUser@172.19.0.1',0),(32,'thirdPartyReportProject','FDnnnohCdBLBRQsvC2Su1Oi6AQLuRGVpEYq5952s/KpdVitfI+Fcgu2C+noYobni',15,'2024-06-21 11:19:35','2024-06-21 11:19:35','hadesDbSvcUser@172.19.0.1',0),(33,'irisJobGenerator','C4t6MD28TZSu9hjP+Emm8hhC0DZmxW3bU4lXAJoCCXJdVitfI+Fcgu2C+noYobni',15,'2024-06-21 13:07:59','2024-06-21 13:07:59','hadesDbSvcUser@172.19.0.1',0),(34,'irisOfflineApp','ywz4p1+ICxRBiu51ocvkvjpYL6Lv6GZPgYLflZCtOEZdVitfI+Fcgu2C+noYobni',15,'2024-06-21 13:19:14','2024-06-21 13:19:14','hadesDbSvcUser@172.19.0.1',0),(35,'taggingDataEtl','KMf1WynE0WvT1NAC9/1vVwiHieEazrQ+F4/3z4AAijZdVitfI+Fcgu2C+noYobni',15,'2024-06-23 08:16:05','2024-06-23 08:16:05','hadesDbSvcUser@172.19.0.1',0),(36,'molocoOmsTaggingFlow','3aIHpZmTXhnEbsGLTvIJeRqciru/To/UqXyHZn3fW/JdVitfI+Fcgu2C+noYobni',15,'2024-06-23 14:19:35','2024-06-23 14:19:35','hadesDbSvcUser@172.19.0.1',0),(37,'hadesEntityMappingStaging2','TnJ18IiHN9wrggJoATtOXyxT5ciYrLwVboWkTNJnG6NdVitfI+Fcgu2C+noYobni',15,'2024-06-24 11:46:46','2024-06-24 11:46:46','hadesDbSvcUser@172.19.0.1',0),(38,'molocoOmsTaggingStaging2Flow','5a7/ZGwAvKyjhqLAW9Lcb3hB/R4VMVgofNruDhBASz5dVitfI+Fcgu2C+noYobni',15,'2024-06-25 06:00:30','2024-06-25 06:00:30','hadesDbSvcUser@172.19.0.1',0),(39,'taggingDataStaging2Etl','6HQZsAwGSxy75G0v6IEQOWlHIxvh3/qPW+3Agx37EBldVitfI+Fcgu2C+noYobni',15,'2024-06-25 06:05:22','2024-06-25 06:05:22','hadesDbSvcUser@172.19.0.1',0),(40,'athenaClientDetailsPushDaemonStaging2','6J6ASXlXNR2DxvuG6PXCpbUuBaMaTL5p+85Hn2HYG7NdVitfI+Fcgu2C+noYobni',15,'2024-06-26 17:17:50','2024-06-26 17:17:50','hadesDbSvcUser@172.19.0.1',0),(41,'OS_DB_CLIENT','Vlk7ZUs3JeYIody2Z6i1OG3+6COSEPbdg4kXf/Hk7xtdVitfI+Fcgu2C+noYobni',15,'2024-09-26 05:47:21','2024-09-26 05:47:21','hadesDbSvcUser@172.19.0.1',0),(42,'logsUploader','4TrY7PFBOnj/iVrQzboWzRZsk3KeUOlFXBSPgB+R53tdVitfI+Fcgu2C+noYobni',15,'2024-12-10 05:25:13','2024-12-10 05:25:13','hadesDbSvcUser@172.19.0.1',0),(43,'onboardingScript','hSf19pfnwcP6rGge/mr9O2mVaj8Y3e30sSrA+MIDPK1dVitfI+Fcgu2C+noYobni',8,'2025-04-30 08:52:57','2025-04-30 08:52:57','hadesDbSvcUser@172.19.0.1',0); +/*!40000 ALTER TABLE `apps` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_apps_insert_trigger BEFORE INSERT ON hades_db.apps +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_apps_update_trigger BEFORE UPDATE ON hades_db.apps +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `auth_channel_keys` +-- + +DROP TABLE IF EXISTS `auth_channel_keys`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `auth_channel_keys` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `auth_channel_id` int(11) NOT NULL, + `key` char(100) NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `auth_channel_id` (`auth_channel_id`,`key`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_channel_keys` +-- + +LOCK TABLES `auth_channel_keys` WRITE; +/*!40000 ALTER TABLE `auth_channel_keys` DISABLE KEYS */; +INSERT INTO `auth_channel_keys` VALUES (1,2,'firstName',0,'2024-05-20 08:57:16','2024-05-20 08:57:16','root@172.19.0.1'),(2,2,'lastName',0,'2024-05-20 08:57:16','2024-05-20 08:57:16','root@172.19.0.1'),(3,2,'headline',0,'2024-05-20 08:57:16','2024-05-20 08:57:16','root@172.19.0.1'),(4,2,'pictureUrl',0,'2024-05-20 08:57:16','2024-05-20 08:57:16','root@172.19.0.1'); +/*!40000 ALTER TABLE `auth_channel_keys` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_auth_channel_keys_insert_trigger BEFORE INSERT ON hades_db.auth_channel_keys +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_auth_channel_keys_update_trigger BEFORE UPDATE ON hades_db.auth_channel_keys +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `auth_channels` +-- + +DROP TABLE IF EXISTS `auth_channels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `auth_channels` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` char(100) NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_channels` +-- + +LOCK TABLES `auth_channels` WRITE; +/*!40000 ALTER TABLE `auth_channels` DISABLE KEYS */; +INSERT INTO `auth_channels` VALUES (1,'SOKRATI',0,'2024-05-20 08:57:15','2024-05-20 08:57:15','root@172.19.0.1'),(2,'LINKEDIN',0,'2024-05-20 08:57:15','2024-05-20 08:57:15','root@172.19.0.1'),(3,'SHOPIFY',0,'2024-05-20 08:57:15','2024-05-20 08:57:15','root@172.19.0.1'),(4,'BIGCOMMERCE',0,'2024-05-20 08:57:15','2024-05-20 08:57:15','root@172.19.0.1'); +/*!40000 ALTER TABLE `auth_channels` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_auth_channels_insert_trigger BEFORE INSERT ON hades_db.auth_channels +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_auth_channels_update_trigger BEFORE UPDATE ON hades_db.auth_channels +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `auth_provider_metadata` +-- + +DROP TABLE IF EXISTS `auth_provider_metadata`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `auth_provider_metadata` ( + `user_id` int(11) NOT NULL, + `auth_provider_type_id` int(3) NOT NULL, + `auth_provider_value` char(250) COLLATE utf8mb4_unicode_ci NOT NULL, + `activation_code` char(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `is_verified` tinyint(1) NOT NULL DEFAULT '0', + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` char(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`auth_provider_type_id`,`auth_provider_value`), + KEY `index_user_id_on_auth_provider_metadata` (`user_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_provider_metadata` +-- + +LOCK TABLES `auth_provider_metadata` WRITE; +/*!40000 ALTER TABLE `auth_provider_metadata` DISABLE KEYS */; +/*!40000 ALTER TABLE `auth_provider_metadata` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_auth_provider_metadata_insert_trigger BEFORE INSERT ON hades_db.auth_provider_metadata +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_auth_provider_metadata_update_trigger BEFORE UPDATE ON hades_db.auth_provider_metadata +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `auth_provider_metadata_v2` +-- + +DROP TABLE IF EXISTS `auth_provider_metadata_v2`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `auth_provider_metadata_v2` ( + `user_id` int(11) NOT NULL, + `agency_id` int(11) NOT NULL DEFAULT '-1', + `auth_provider_type_id` int(3) NOT NULL, + `auth_provider_value` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, + `activation_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `is_verified` tinyint(1) NOT NULL DEFAULT '0', + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`auth_provider_type_id`,`auth_provider_value`,`agency_id`), + KEY `index_user_id_on_auth_provider_metadata_v2` (`user_id`,`agency_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_provider_metadata_v2` +-- + +LOCK TABLES `auth_provider_metadata_v2` WRITE; +/*!40000 ALTER TABLE `auth_provider_metadata_v2` DISABLE KEYS */; +INSERT INTO `auth_provider_metadata_v2` VALUES (100176,-1,1,'/+OO24gDvgc02vRQt6+spwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 13:26:38','2024-08-22 13:26:38','hadesDbSvcUser@172.19.0.1'),(100535,-1,1,'/0pyzDkdHbM6mVtRfwwtoAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-14 07:47:07','2025-02-14 07:47:07','hadesDbSvcUser@172.19.0.1'),(100035,-1,1,'/7Fi/Laxw4PeCvMMuzzGyDq7AjEwZQ5hJ0zi/y3L7YQ=',NULL,1,0,'2024-05-24 14:23:31','2024-05-24 14:23:31','hadesDbSvcUser@172.19.0.1'),(100440,-1,1,'/fhGY0wgYSKn3pnHmHwbawIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-19 10:36:19','2024-12-19 10:36:19','hadesDbSvcUser@172.19.0.1'),(100136,-1,1,'/FNAbY7LE9g3vIKW28sP+acLooRr4GLgDi4KcghVwuk=',NULL,1,0,'2024-08-07 14:02:32','2024-08-07 14:02:32','hadesDbSvcUser@172.19.0.1'),(100548,-1,1,'/MjWOR417FSu729Gp9lJRQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-05 13:33:20','2025-03-05 13:33:20','hadesDbSvcUser@172.19.0.1'),(100477,-1,1,'/NznvZEiMBP3tHFJr4FyNwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-24 09:06:16','2024-12-24 09:06:16','hadesDbSvcUser@172.19.0.1'),(100561,-1,1,'/OqoNbLfwBkb3EA0r7kDSwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-19 14:36:20','2025-03-19 14:36:20','hadesDbSvcUser@172.19.0.1'),(100095,-1,1,'/rgKWq9CAVWvwwVKR5bgHdP3kl78wnxTj3gGpqaMfBY=',NULL,1,0,'2024-06-17 08:34:36','2024-06-17 08:34:36','hadesDbSvcUser@172.19.0.1'),(100208,-1,1,'/T3QH10bPv3pLVZn7r6u+AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 07:31:04','2024-09-12 07:31:04','hadesDbSvcUser@172.19.0.1'),(100133,-1,1,'/TMDx0yJMdsmtM6CgRWXXgkYhIZm9pvv2mWm4vYsBgE=',NULL,1,0,'2024-07-31 09:12:24','2024-07-31 09:12:24','hadesDbSvcUser@172.19.0.1'),(100463,-1,1,'+5P72TapgChKb/KdyWPp9QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 10:18:08','2024-12-23 10:18:08','hadesDbSvcUser@172.19.0.1'),(100416,-1,1,'+bJNWUGGc8HWLYIQP0OobQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-16 13:24:05','2024-12-16 13:24:05','hadesDbSvcUser@172.19.0.1'),(100504,-1,1,'+DcR9swyLs2PxjhJVIbbxAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-13 06:36:56','2025-01-13 06:36:56','hadesDbSvcUser@172.19.0.1'),(100462,-1,1,'+eFVtchR1C9cTJ+5++LmPQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 10:13:10','2024-12-23 10:13:10','hadesDbSvcUser@172.19.0.1'),(100152,-1,1,'+eqaVUpM1Qh+w1wwe4sefgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-21 13:04:27','2024-08-21 13:04:27','hadesDbSvcUser@172.19.0.1'),(100127,-1,1,'+rVX9IH7J+DdIbPkseqh1fRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2024-07-31 06:09:39','2024-07-31 06:09:39','hadesDbSvcUser@172.19.0.1'),(100451,-1,1,'+sGrq8lIbj4EbYamwHmnaAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-20 13:33:07','2024-12-20 13:33:07','hadesDbSvcUser@172.19.0.1'),(100401,-1,1,'+vCMZ867awOl8PpkzCcdwwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-10 13:11:04','2024-12-10 13:11:04','hadesDbSvcUser@172.19.0.1'),(100365,-1,1,'+vwpw+8t6vmYk/UQY9+gKQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-19 13:57:59','2024-11-19 13:57:59','hadesDbSvcUser@172.19.0.1'),(100531,-1,1,'+XiWRcZ4CEB4usoPYgV8cgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-12 14:58:18','2025-02-12 14:58:18','hadesDbSvcUser@172.19.0.1'),(100218,-1,1,'0+0EReHfI4cWbqQNUX+BcwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-16 05:11:45','2024-09-16 05:11:45','hadesDbSvcUser@172.19.0.1'),(100485,-1,1,'096F7lMAWTgv3Cj7RgJexGoEPFoFLRiFhiGclIQ4rPDdR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2025-01-06 05:40:32','2025-01-06 05:40:32','hadesDbSvcUser@172.19.0.1'),(100549,-1,1,'09EcVE3z7MXUIOIj9V5qPgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-05 13:39:17','2025-03-05 13:39:17','hadesDbSvcUser@172.19.0.1'),(100474,-1,1,'0H8aZgR0NfUYLHnd7XYp5gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-24 08:00:28','2024-12-24 08:00:28','hadesDbSvcUser@172.19.0.1'),(100608,-1,1,'0JTz/Rr09YyRC/0EDnAugAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-15 13:50:13','2025-04-15 13:50:13','hadesDbSvcUser@172.19.0.1'),(100097,-1,1,'0m76yqUl5lzWSJpYIaCu09zNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',NULL,1,0,'2024-06-17 10:04:14','2024-06-17 10:04:14','hadesDbSvcUser@172.19.0.1'),(100619,-1,1,'1+rJTrLBhvDalv7S6L+NcwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-17 13:57:57','2025-04-17 13:57:57','hadesDbSvcUser@172.19.0.1'),(100125,-1,1,'1BBYAgiEsILgh6reZJHNiV1WK18j4VyC7YL6ehihueI=',NULL,1,0,'2024-07-31 06:03:12','2024-07-31 06:03:12','hadesDbSvcUser@172.19.0.1'),(100308,-1,1,'1BFrfqObR60AiZL4ISqa+FD/JQhID6xtIntMLNTYAsQ=',NULL,1,0,'2024-10-24 10:15:54','2024-10-24 10:15:54','hadesDbSvcUser@172.19.0.1'),(100142,-1,1,'1ejdDPHTXP9oyouyy/cZPt1HSDlj6eQJgxPv2kN3ZF8=',NULL,1,0,'2024-08-21 10:09:15','2024-08-21 10:09:15','hadesDbSvcUser@172.19.0.1'),(100291,-1,1,'1EK4Ig9TiLkN1gbA74uSfVQuWQsXpxK9mg6YBrWPGXCdqkE+KBk1Ew1JWUWG+i2t',NULL,1,0,'2024-10-17 05:30:53','2024-10-17 05:30:53','hadesDbSvcUser@172.19.0.1'),(100154,-1,1,'1iic7no4CNTfMs4INe597gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-21 13:08:00','2024-08-21 13:08:00','hadesDbSvcUser@172.19.0.1'),(100532,-1,1,'1j7s9+d+1vMt7eQUYbpUdgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-13 12:48:25','2025-02-13 12:48:25','hadesDbSvcUser@172.19.0.1'),(100360,-1,1,'1ntHpBX/mc6LTxI/JZcl6AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-14 13:01:39','2024-11-14 13:01:39','hadesDbSvcUser@172.19.0.1'),(100183,-1,1,'1o/8F4KdQI3ZGE4fKgJmlQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 05:23:12','2024-09-10 05:23:12','hadesDbSvcUser@172.19.0.1'),(100078,-1,1,'1Q7605cdKidQlfMQkk3aYbRdv1MCHg0l4UzAhRavNZ2dqkE+KBk1Ew1JWUWG+i2t',NULL,1,0,'2024-06-13 06:47:18','2024-06-13 06:47:18','hadesDbSvcUser@172.19.0.1'),(100294,-1,1,'1rasnn20WZEotFhqnpFbrx5klR+ibPcwa1GdtTGKoAKdqkE+KBk1Ew1JWUWG+i2t',NULL,1,0,'2024-10-17 10:32:33','2024-10-17 10:32:33','hadesDbSvcUser@172.19.0.1'),(100270,-1,1,'1tbYyfy+ATyTJiaGjzyXzAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-01 12:12:30','2024-10-01 12:12:30','hadesDbSvcUser@172.19.0.1'),(100390,-1,1,'1u3In73TwJRpiWk58IvHqwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-06 07:17:51','2024-12-06 07:17:51','hadesDbSvcUser@172.19.0.1'),(100565,-1,1,'1uQmMRbcc6S+Q0O9fyPMawIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-26 13:06:49','2025-03-26 13:06:49','hadesDbSvcUser@172.19.0.1'),(100098,-1,1,'1wo3N7MpUOLDw2Z82UsOVzOhbILCrZkGDzUiwLveYsY=',NULL,1,0,'2024-06-18 08:01:17','2024-06-18 08:01:17','hadesDbSvcUser@172.19.0.1'),(100641,-1,1,'1wuGiECEYyMbGYvn8mo21wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-25 17:16:17','2025-04-25 17:16:17','hadesDbSvcUser@172.19.0.1'),(100213,-1,1,'204WADLTSlJC6Z4QDmZAYjxf5yR0PYqMvPW02TuGmXI=',NULL,1,0,'2024-09-13 05:07:18','2024-09-13 05:07:18','hadesDbSvcUser@172.19.0.1'),(100606,-1,1,'21StMbd0JUObZoYcp0aYHgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-15 12:29:37','2025-04-15 12:29:37','hadesDbSvcUser@172.19.0.1'),(4661,-1,1,'29JxRBnH7s2g2KDLwtwyVm4drH/q50fV8RVZam2tsTw=',NULL,1,0,'2024-05-20 09:16:23','2024-05-21 06:34:19','root@172.19.0.1'),(100423,-1,1,'2F2zldsurKp23bykiGZPRAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-17 13:07:51','2024-12-17 13:07:51','hadesDbSvcUser@172.19.0.1'),(100039,-1,1,'2HFMmXfr0jOEJM3b8idr2Tq7AjEwZQ5hJ0zi/y3L7YQ=',NULL,1,0,'2024-05-28 01:26:58','2024-05-28 01:26:58','hadesDbSvcUser@172.19.0.1'),(100617,-1,1,'2Kl9vjVyloyWAz5XSlYPvQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-17 11:10:29','2025-04-17 11:10:29','hadesDbSvcUser@172.19.0.1'),(100591,-1,1,'2ksdnCOZFgmUbMQ9poF7SQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-09 10:28:03','2025-04-09 10:28:03','hadesDbSvcUser@172.19.0.1'),(100388,-1,1,'2KSskG5R/Iu7Q/U2kQcL3AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-06 06:05:40','2024-12-06 06:05:40','hadesDbSvcUser@172.19.0.1'),(100523,-1,1,'2N21eTmkftTxQRk50n+kAAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-03 18:30:48','2025-02-03 18:30:48','hadesDbSvcUser@172.19.0.1'),(100147,-1,1,'2OGnNhGlDE3JSof9OaiwzgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-21 12:07:12','2024-08-21 12:07:12','hadesDbSvcUser@172.19.0.1'),(100159,-1,1,'2Qbxp5lq1w7Irf4opRMtHgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 08:13:37','2024-08-22 08:13:37','hadesDbSvcUser@172.19.0.1'),(100344,-1,1,'2Rlb8Rttt3uAGLqezB3OdAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 09:42:22','2024-11-13 09:42:22','hadesDbSvcUser@172.19.0.1'),(100169,-1,1,'2W9b3+irI9TLlY3R6OGErQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 13:13:06','2024-08-22 13:13:06','hadesDbSvcUser@172.19.0.1'),(100646,-1,1,'319ozjrm5Jh6i39Y5nOq/AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-26 11:58:00','2025-04-26 11:58:00','hadesDbSvcUser@172.19.0.1'),(100223,-1,1,'329IxO778SJy/jD7W5+YdQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-16 11:50:42','2024-09-16 11:50:42','hadesDbSvcUser@172.19.0.1'),(100239,-1,1,'33YUq1SHD5+IPfTguLXSOgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-20 12:28:22','2024-09-20 12:28:22','hadesDbSvcUser@172.19.0.1'),(100371,-1,1,'34wHjClNpkYzSEyezEiBMwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-21 10:09:42','2024-11-21 10:09:42','hadesDbSvcUser@172.19.0.1'),(100325,-1,1,'37neKV6yryFYt77KJuFNlAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-05 12:44:03','2024-11-05 12:44:03','hadesDbSvcUser@172.19.0.1'),(100651,-1,1,'3C4oRNMFCBm52XFTRT/AhQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-29 13:01:34','2025-04-29 13:01:34','hadesDbSvcUser@172.19.0.1'),(100437,-1,1,'3CM+5NfMIkXpFimE3OdkRAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-19 05:35:06','2024-12-19 05:35:06','hadesDbSvcUser@172.19.0.1'),(100038,-1,1,'3Eg3FxJ70TEwyvbt6n/HS1pqhQTE6wyvt07Kl+s9Rjl0uAZJ/LmU/l89OaLLJMo4',NULL,1,0,'2024-05-27 06:46:39','2024-05-27 06:46:39','hadesDbSvcUser@172.19.0.1'),(100137,-1,1,'3Eg3FxJ70TEwyvbt6n/HS3sQzcCtEsLGZtL1oqhOTOw=',NULL,1,0,'2024-08-09 09:52:17','2024-08-09 09:52:17','hadesDbSvcUser@172.19.0.1'),(100672,-1,1,'3fa+LiIVAmhRquWu3KfzrgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-27 09:27:08','2025-05-27 09:27:08','hadesDbSvcUser@172.19.0.1'),(100441,-1,1,'3IlpEaOrp9oXnQkpWv/dFgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-19 10:49:01','2024-12-19 10:49:01','hadesDbSvcUser@172.19.0.1'),(100297,-1,1,'3IXHiyWqgRpOZH5apyrHhwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-18 05:52:11','2024-10-18 05:52:11','hadesDbSvcUser@172.19.0.1'),(100212,-1,1,'3rvslqt9RqU9Ghac5gb4YgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 08:21:58','2024-09-12 08:21:58','hadesDbSvcUser@172.19.0.1'),(100155,-1,1,'3TNz1WZY03+QvrJy1QEQ1AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 07:56:13','2024-08-22 07:56:13','hadesDbSvcUser@172.19.0.1'),(100625,-1,1,'3TW3vY1FOBiotngG4AQKbAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-19 11:48:55','2025-04-19 11:48:55','hadesDbSvcUser@172.19.0.1'),(100329,-1,1,'3vAzqmz6DTiloR/rGr7L+nsQzcCtEsLGZtL1oqhOTOw=',NULL,1,0,'2024-11-08 05:32:39','2024-11-08 05:32:39','hadesDbSvcUser@172.19.0.1'),(100542,-1,1,'3VPg2Pk52XGPOAfO6Y5qogIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-25 12:19:41','2025-02-25 12:19:41','hadesDbSvcUser@172.19.0.1'),(100201,-1,1,'3xBcVLGV1689E99+7Bh5zgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 06:13:07','2024-09-12 06:13:07','hadesDbSvcUser@172.19.0.1'),(100361,-1,1,'3YygrUOfCK+GJ4egSpcmGgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-14 13:53:49','2024-11-14 13:53:49','hadesDbSvcUser@172.19.0.1'),(100211,-1,1,'4+v24nYR7NGhJLjOpvvIQwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 07:41:26','2024-09-12 07:41:26','hadesDbSvcUser@172.19.0.1'),(100036,-1,1,'40TpVJ5d+TVw+pDLahwYYfG7eBhK375QlnQo3lVX23Y=',NULL,1,0,'2024-05-24 14:55:29','2024-05-24 14:55:29','hadesDbSvcUser@172.19.0.1'),(100489,-1,1,'42uHDiHPy+3gA6W2S7HHnwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-07 07:37:27','2025-01-07 07:37:27','hadesDbSvcUser@172.19.0.1'),(100202,-1,1,'4EWOZGXohX+Rl3dzC4xOfgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 07:24:28','2024-09-12 07:24:28','hadesDbSvcUser@172.19.0.1'),(100666,-1,1,'4LFuX7kCuAbylSzDqNKLiAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-21 07:35:38','2025-05-21 07:35:38','hadesDbSvcUser@172.19.0.1'),(100060,-1,1,'4MQrcvltCfhr8VVMe/EMrKqbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-06-11 05:08:08','2024-06-11 05:08:08','hadesDbSvcUser@172.19.0.1'),(100664,-1,1,'4Q1obUI6IA4XWzn9aKth5AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-20 13:22:24','2025-05-20 13:22:24','hadesDbSvcUser@172.19.0.1'),(100551,-1,1,'4Q2GI2BoF8j+8Jj4AvEGtQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-06 09:56:33','2025-03-06 09:56:33','hadesDbSvcUser@172.19.0.1'),(100468,-1,1,'532M2xKiJgrEjVUC8vbUTgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 12:42:34','2024-12-23 12:42:34','hadesDbSvcUser@172.19.0.1'),(100446,-1,1,'57YzcYvT75CYsHNp8t0z2AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-20 05:37:36','2024-12-20 05:37:36','hadesDbSvcUser@172.19.0.1'),(100447,-1,1,'5C8nlgguVTtNQ3PeHDhePQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-20 06:42:06','2024-12-20 06:42:06','hadesDbSvcUser@172.19.0.1'),(100117,-1,1,'5dYfvbtTLOzzaRJNy3H6svRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2024-07-30 13:28:09','2024-07-30 13:28:09','hadesDbSvcUser@172.19.0.1'),(100250,-1,1,'5LbX2v38/9u62D9aeOursgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-25 10:40:54','2024-09-25 10:40:54','hadesDbSvcUser@172.19.0.1'),(100513,-1,1,'5mHphVKe+9D++D82bcHhXQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-31 11:26:49','2025-01-31 11:26:49','hadesDbSvcUser@172.19.0.1'),(100407,-1,1,'5Msllmn0p4taCgZanqJI5AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-11 06:10:08','2024-12-11 06:10:08','hadesDbSvcUser@172.19.0.1'),(100522,-1,1,'5PFzFVazThTFqdWDAGe2SwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-03 17:22:10','2025-02-03 17:22:10','hadesDbSvcUser@172.19.0.1'),(100215,-1,1,'5QkQUbri3AM7RjyXKxrtTpki4ciB+M5QlFOMGo08lhI=',NULL,1,0,'2024-09-13 05:08:05','2024-09-13 05:08:05','hadesDbSvcUser@172.19.0.1'),(100563,-1,1,'5r9YMVm9wAOqPsCgGhLy3gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-20 13:42:24','2025-03-20 13:42:24','hadesDbSvcUser@172.19.0.1'),(100150,-1,1,'5RCwL/NOXOME6syJe7VsgwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-21 12:38:34','2024-08-21 12:38:34','hadesDbSvcUser@172.19.0.1'),(100170,-1,1,'5tYJZLHgmlMCAUuqn2FAzgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 13:15:27','2024-08-22 13:15:27','hadesDbSvcUser@172.19.0.1'),(100448,-1,1,'5xnGfYPVXr/frK7oOxGJtQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-20 06:43:18','2024-12-20 06:43:18','hadesDbSvcUser@172.19.0.1'),(100667,-1,1,'5YHmxuXWnBIhHesNHpnIEQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-21 13:10:59','2025-05-21 13:10:59','hadesDbSvcUser@172.19.0.1'),(100525,-1,1,'652UevPNjfoa00uXpdSOtgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-05 13:58:14','2025-02-05 13:58:14','hadesDbSvcUser@172.19.0.1'),(100369,-1,1,'6A3rP5FGjPK7+94dD+DwyQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-20 12:24:47','2024-11-20 12:24:47','hadesDbSvcUser@172.19.0.1'),(100052,-1,1,'6dQaT5/CRsmRjrfrsiDtgk1ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',NULL,1,0,'2024-06-06 10:00:34','2024-06-06 10:00:34','hadesDbSvcUser@172.19.0.1'),(100478,-1,1,'6ixnwqJBkwMu4xngL2HRmwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-24 09:07:13','2024-12-24 09:07:13','hadesDbSvcUser@172.19.0.1'),(100665,-1,1,'6JTtcza/ROQE9rv8hYoLUwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-21 07:33:56','2025-05-21 07:33:56','hadesDbSvcUser@172.19.0.1'),(100051,-1,1,'6NS7Ux4AsWfaZlzu0+oqgA==',NULL,1,0,'2024-06-06 09:46:06','2024-06-06 09:46:06','hadesDbSvcUser@172.19.0.1'),(100268,-1,1,'6o3UfAl0WAw+5g0RCiPPFAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-01 09:53:37','2024-10-01 09:53:37','hadesDbSvcUser@172.19.0.1'),(100110,-1,1,'6QqXBiefQ3/t/DMdptzNcXsQzcCtEsLGZtL1oqhOTOw=',NULL,1,0,'2024-07-22 09:20:02','2024-07-22 09:20:02','hadesDbSvcUser@172.19.0.1'),(100256,-1,1,'6rlzFJM9FxzQAPDplT8ghwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-26 12:15:06','2024-09-26 12:15:06','hadesDbSvcUser@172.19.0.1'),(100583,-1,1,'6TokWpoNaOFR/Pl+mVwQ3gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-07 08:54:25','2025-04-07 08:54:25','hadesDbSvcUser@172.19.0.1'),(100290,-1,1,'6WR48XTAicWv2h9OUdHhVwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-16 13:51:55','2024-10-16 13:51:55','hadesDbSvcUser@172.19.0.1'),(100164,-1,1,'6yMn9ca7T96xOe6sVQr0wQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 08:38:07','2024-08-22 08:38:07','hadesDbSvcUser@172.19.0.1'),(100490,-1,1,'75EE54hTVPM9d8Kw2FedGAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-07 12:38:15','2025-01-07 12:38:15','hadesDbSvcUser@172.19.0.1'),(100495,-1,1,'77egYaB7HC7FqnGlkggbPgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-09 11:36:04','2025-01-09 11:36:04','hadesDbSvcUser@172.19.0.1'),(100265,-1,1,'7c7lnEv9WhCBCPFNdQgPBgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-01 04:37:11','2024-10-01 04:37:11','hadesDbSvcUser@172.19.0.1'),(100320,-1,1,'7hVxEnK8QN11MEApFBcgKU1ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',NULL,1,0,'2024-10-30 09:20:22','2024-10-30 09:20:22','hadesDbSvcUser@172.19.0.1'),(100278,-1,1,'7jy/GLX5GnDea6ETE2JAPgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-03 10:56:36','2024-10-03 10:56:36','hadesDbSvcUser@172.19.0.1'),(100145,-1,1,'7oAh7GvD/kEn++DHKVywo11WK18j4VyC7YL6ehihueI=',NULL,1,0,'2024-08-21 12:02:40','2024-08-21 12:02:40','hadesDbSvcUser@172.19.0.1'),(100467,-1,1,'7ObKzLhvhCTgJcFp80sMcAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 12:40:18','2024-12-23 12:40:18','hadesDbSvcUser@172.19.0.1'),(100363,-1,1,'7Q27ZUtwEwf3nfkU9xTMkgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-18 13:13:39','2024-11-18 13:13:39','hadesDbSvcUser@172.19.0.1'),(100317,-1,1,'7socnCO/pReSAHY6yvs0lwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-28 13:28:30','2024-10-28 13:28:30','hadesDbSvcUser@172.19.0.1'),(100139,-1,1,'7wAVZiHmJmgZNtsiGdP9+QkYhIZm9pvv2mWm4vYsBgE=',NULL,1,0,'2024-08-12 05:47:15','2024-08-12 05:47:15','hadesDbSvcUser@172.19.0.1'),(100408,-1,1,'7zWbiVjNylmlG/L3FNPONQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-11 07:21:42','2024-12-11 07:21:42','hadesDbSvcUser@172.19.0.1'),(100252,-1,1,'8/9suhTtea12Wnk9xlHX0AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-25 11:37:09','2024-09-25 11:37:09','hadesDbSvcUser@172.19.0.1'),(100029,-1,1,'8/xL5lsPDY/yHyuz+Czn16qbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-05-23 09:50:59','2024-05-23 09:50:59','hadesDbSvcUser@172.19.0.1'),(100008,-1,1,'8/xL5lsPDY/yHyuz+Czn19zNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',NULL,1,0,'2024-05-21 10:49:58','2024-05-21 10:49:58','hadesDbSvcUser@172.19.0.1'),(100076,-1,1,'82HUVV4TKsi8+heHnWi1UqqbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-06-13 06:03:26','2024-06-13 06:03:26','hadesDbSvcUser@172.19.0.1'),(100327,-1,1,'860siMqZAC7ecz/8TO8BTgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-07 09:02:38','2024-11-07 09:02:38','hadesDbSvcUser@172.19.0.1'),(100662,-1,1,'86LjLS2O7hdKpILCDSZGjwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-20 12:11:10','2025-05-20 12:11:10','hadesDbSvcUser@172.19.0.1'),(100339,-1,1,'8HfYiASZTTlkdU4DurY03Jki4ciB+M5QlFOMGo08lhI=',NULL,1,0,'2024-11-13 06:00:27','2024-11-13 06:00:27','hadesDbSvcUser@172.19.0.1'),(100345,-1,1,'8hPmy33n/vBjucBxd0fxMwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 09:47:36','2024-11-13 09:47:36','hadesDbSvcUser@172.19.0.1'),(100003,-1,1,'8iySHD3v7weT02w1or/X181nZHP9B5gpT4GiTiY3xKA=',NULL,1,0,'2024-05-20 09:19:05','2024-05-20 09:19:05','hadesDbSvcUser@172.19.0.1'),(100070,-1,1,'8JAK7cDFVbkMhU5K1hnvX58qLvV29S1aVHlz5wzhkpA=',NULL,1,0,'2024-06-11 05:39:12','2024-06-11 05:39:12','hadesDbSvcUser@172.19.0.1'),(100009,-1,1,'8kZEwGdRI7OJVDOVKuBH7NzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',NULL,1,0,'2024-05-21 10:49:58','2024-05-21 10:49:58','hadesDbSvcUser@172.19.0.1'),(100335,-1,1,'8md5EHxtRE/6kOOZQaH3AaH0ot+k86WbxHgYWoXL28M=',NULL,1,0,'2024-11-12 04:13:52','2024-11-12 04:13:52','hadesDbSvcUser@172.19.0.1'),(100242,-1,1,'8Sr7AdrwmU5UtLBOuf2SYgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-20 13:05:37','2024-09-20 13:05:37','hadesDbSvcUser@172.19.0.1'),(100168,-1,1,'8sufGdvt1ZEL71LwTFeKkAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 12:42:59','2024-08-22 12:42:59','hadesDbSvcUser@172.19.0.1'),(100210,-1,1,'8TRFIeQcU/RS4tq5qWOYOgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 07:33:05','2024-09-12 07:33:05','hadesDbSvcUser@172.19.0.1'),(100007,-1,1,'8uANQG6hjbOIFsdTmew6w/RmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2024-05-21 10:32:56','2024-05-21 10:32:56','hadesDbSvcUser@172.19.0.1'),(100172,-1,1,'8UnMuRktmzfxs/S8bXbyZgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 13:19:54','2024-08-22 13:19:54','hadesDbSvcUser@172.19.0.1'),(100262,-1,1,'96njgQNuAmbX65dtR+Ry1QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-30 11:37:11','2024-09-30 11:37:11','hadesDbSvcUser@172.19.0.1'),(100483,-1,1,'9aGRtuqO7MwGsAduQ56p5gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-02 12:46:19','2025-01-02 12:46:19','hadesDbSvcUser@172.19.0.1'),(100135,-1,1,'9Fl6jwNDip9zZ+qTkKSUSAkYhIZm9pvv2mWm4vYsBgE=',NULL,1,0,'2024-08-07 08:16:35','2024-08-07 08:16:35','hadesDbSvcUser@172.19.0.1'),(100229,-1,1,'9H1LeEhdLlhmnSs/22gJ3AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-18 09:50:14','2024-09-18 09:50:14','hadesDbSvcUser@172.19.0.1'),(100645,-1,1,'9JSj8OlWaufLKGA9ogw6owIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-26 11:54:37','2025-04-26 11:54:37','hadesDbSvcUser@172.19.0.1'),(100165,-1,1,'9m9t8DRLHNwN+ZNxOVLc6gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 08:41:06','2024-08-22 08:41:06','hadesDbSvcUser@172.19.0.1'),(100394,-1,1,'9mLzIopiW7zTMy1fpYvhcNzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',NULL,1,0,'2024-12-09 05:29:57','2024-12-09 05:29:57','hadesDbSvcUser@172.19.0.1'),(100383,-1,1,'9PNXs20J7uiyts1gTBhargIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-03 11:18:00','2024-12-03 11:18:00','hadesDbSvcUser@172.19.0.1'),(100633,-1,1,'9qsDp5DflNO7F+ghxJo3swIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-21 08:50:16','2025-04-21 08:50:16','hadesDbSvcUser@172.19.0.1'),(100219,-1,1,'a/lfBsgpVsMnnmSNnwkBEAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-16 05:46:41','2024-09-16 05:46:41','hadesDbSvcUser@172.19.0.1'),(100524,-1,1,'A/xy6fz3KBFME2ywkBn79gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-04 05:35:34','2025-02-04 05:35:34','hadesDbSvcUser@172.19.0.1'),(100497,-1,1,'A3o7NzX/BsZPLyuayURDYAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-09 11:46:25','2025-01-09 11:46:25','hadesDbSvcUser@172.19.0.1'),(100482,-1,1,'A7jinGPg28wvf4J6OV14FAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-24 12:10:23','2024-12-24 12:10:23','hadesDbSvcUser@172.19.0.1'),(100590,-1,1,'A7mVd4pfjTPQ8XnoPLuaPAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-09 09:23:42','2025-04-09 09:23:42','hadesDbSvcUser@172.19.0.1'),(100554,-1,1,'a8H29EXIN7mIzK5GqLox2gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-06 13:16:19','2025-03-06 13:16:19','hadesDbSvcUser@172.19.0.1'),(4662,-1,1,'ABpdztoPqBvJoO23y/Yw7nS4Bkn8uZT+Xz05osskyjg=',NULL,1,0,'2024-05-20 09:17:06','2024-05-21 06:34:25','root@172.19.0.1'),(100656,-1,1,'aD1TZH9ae87kT4j45quQvwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-12 13:09:27','2025-05-12 13:09:27','hadesDbSvcUser@172.19.0.1'),(100015,-1,1,'AH9nmE2PljkODKBEmb4cx+Mbl+xX8J3Se/KyCqenqSKWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-05-21 11:11:30','2024-05-21 11:11:30','hadesDbSvcUser@172.19.0.1'),(100050,-1,1,'AH9nmE2PljkODKBEmb4cxwGwXkq1k8mJaYZt7GJUetn974MXwFBaDo9pmlmITPhW',NULL,1,0,'2024-06-06 06:08:32','2024-06-06 06:08:32','hadesDbSvcUser@172.19.0.1'),(100106,-1,1,'AH9nmE2PljkODKBEmb4cxwvzWAYhRYPS7rtzTRG1uk++FC+IGUE0F7ce5H/J/Ayw',NULL,1,0,'2024-07-11 07:12:30','2024-07-11 07:12:30','hadesDbSvcUser@172.19.0.1'),(100321,-1,1,'AH9nmE2PljkODKBEmb4cxxL0wWD4oRIJL0XuStvlcuS+FC+IGUE0F7ce5H/J/Ayw',NULL,1,0,'2024-11-04 06:49:25','2024-11-04 06:49:25','hadesDbSvcUser@172.19.0.1'),(100537,-1,1,'AH9nmE2PljkODKBEmb4cxzAP3wPtztvG28iTEUNXD9UFQ5puelDI29EHArmO7plI',NULL,1,0,'2025-02-17 08:14:12','2025-02-17 08:14:12','hadesDbSvcUser@172.19.0.1'),(100189,-1,1,'ahPKq85KhB0rt3U9nFTwlAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 06:20:40','2024-09-10 06:20:40','hadesDbSvcUser@172.19.0.1'),(100536,-1,1,'aKHtIuWvXN7PZl015RLvKAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-14 10:16:08','2025-02-14 10:16:08','hadesDbSvcUser@172.19.0.1'),(100520,-1,1,'ALaDh1WIazhYlLVfed3tUQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-03 14:15:42','2025-02-03 14:15:42','hadesDbSvcUser@172.19.0.1'),(100514,-1,1,'AmRpy6M9H9wHDgx9FUcrbgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-31 11:29:03','2025-01-31 11:29:03','hadesDbSvcUser@172.19.0.1'),(100090,-1,1,'anH1bgsUJrE13vhHKtXLD/vKIqRF3A1gJvk7QnxeV+TdR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2024-06-17 07:29:47','2024-06-17 07:29:47','hadesDbSvcUser@172.19.0.1'),(100096,-1,1,'anH1bgsUJrE13vhHKtXLDxn6Vz27rkCoftn+hCzAOl7qNbB9Iac/dkbIKKR7fDcJ',NULL,1,0,'2024-06-17 08:51:14','2024-06-17 08:51:14','hadesDbSvcUser@172.19.0.1'),(100157,-1,1,'ANKFD2DQchdwcQOxwrzcVgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 08:07:04','2024-08-22 08:07:04','hadesDbSvcUser@172.19.0.1'),(100075,-1,1,'AqBZ3XyNxjDrUNgdVEE1JaqbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-06-13 06:03:26','2024-06-13 06:03:26','hadesDbSvcUser@172.19.0.1'),(100267,-1,1,'AqZ8oA/5BYt1aqznKhyAqAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-01 09:39:49','2024-10-01 09:39:49','hadesDbSvcUser@172.19.0.1'),(100020,-1,1,'ATWqvpNuIRwMTkFrboUkBmsyz6/b2eJL6Ouw8SBlLFFdVitfI+Fcgu2C+noYobni',NULL,1,0,'2024-05-22 04:06:26','2024-05-22 04:06:26','hadesDbSvcUser@172.19.0.1'),(100040,-1,1,'ATWqvpNuIRwMTkFrboUkBtsqCa3yE8G+WWkiF5MM0KA=',NULL,1,0,'2024-05-28 05:22:02','2024-05-28 05:22:02','hadesDbSvcUser@172.19.0.1'),(100234,-1,1,'aV4QM9n+1OaFJ6xHPFaU8gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-18 11:04:00','2024-09-18 11:04:00','hadesDbSvcUser@172.19.0.1'),(100351,-1,1,'avIDtHRt8YALb4+WYl403QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 13:45:08','2024-11-13 13:45:08','hadesDbSvcUser@172.19.0.1'),(100540,-1,1,'aVvBZN/oKM5GwNgFp8VpEVpqhQTE6wyvt07Kl+s9Rjl0uAZJ/LmU/l89OaLLJMo4',NULL,1,0,'2025-02-24 09:16:14','2025-02-24 09:16:14','hadesDbSvcUser@172.19.0.1'),(100650,-1,1,'B+b9ipBW+cgHbJOsLqfzIQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-28 11:18:08','2025-04-28 11:18:08','hadesDbSvcUser@172.19.0.1'),(100637,-1,1,'B6JR+PaGSnqyKbxOgMFoVgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-22 14:26:58','2025-04-22 14:26:58','hadesDbSvcUser@172.19.0.1'),(100648,-1,1,'B6M/uUmT7CjONO0uSRAM9AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-26 13:38:00','2025-04-26 13:38:00','hadesDbSvcUser@172.19.0.1'),(100231,-1,1,'bD9fp6fdq+F6NnS2Vlq5lQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-18 10:43:24','2024-09-18 10:43:24','hadesDbSvcUser@172.19.0.1'),(100171,-1,1,'bdT8hKIogzIjII7lWUyRjgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 13:17:10','2024-08-22 13:17:10','hadesDbSvcUser@172.19.0.1'),(100599,-1,1,'BDzppKFjvmjJOi0HBh88BQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-15 09:46:54','2025-04-15 09:46:54','hadesDbSvcUser@172.19.0.1'),(100334,-1,1,'BfGlCGsbI/JLIjibzEmiEQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-11 13:03:27','2024-11-11 13:03:27','hadesDbSvcUser@172.19.0.1'),(100241,-1,1,'bFoWVO1s/+ja4GAjdB4SkgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-20 12:42:55','2024-09-20 12:42:55','hadesDbSvcUser@172.19.0.1'),(100538,-1,1,'BGyxpIC/V4BRU1RdOSXhbwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-17 13:01:30','2025-02-17 13:01:30','hadesDbSvcUser@172.19.0.1'),(100464,-1,1,'BI5BDkENzXEfwvciFw+5PgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 11:21:30','2024-12-23 11:21:30','hadesDbSvcUser@172.19.0.1'),(100279,-1,1,'bJzrFX+4dFfcht2YNIvtYAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-04 10:51:17','2024-10-04 10:51:17','hadesDbSvcUser@172.19.0.1'),(100105,-1,1,'Bkk2sdeZ18F+HELx4BV9YzV+VrgnV/LtlbckFxkQlzU=',NULL,1,0,'2024-07-08 08:18:16','2024-07-08 08:18:16','hadesDbSvcUser@172.19.0.1'),(100556,-1,1,'BKxlcSMA2dmYvsVklmHiGQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-10 07:17:31','2025-03-10 07:17:31','hadesDbSvcUser@172.19.0.1'),(100111,-1,1,'BMoE0sD9eYpdZF7dUTY+zpZvZvQfVhvLv4S9mpavf7E=',NULL,1,0,'2024-07-25 12:58:27','2024-07-25 12:58:27','hadesDbSvcUser@172.19.0.1'),(100403,-1,1,'BNZfXSS+ZYHVHam0ui735wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-10 13:22:32','2024-12-10 13:22:32','hadesDbSvcUser@172.19.0.1'),(100517,-1,1,'Bo1DfUakY3S5UI6bCC+6dwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-03 08:01:29','2025-02-03 08:01:29','hadesDbSvcUser@172.19.0.1'),(100587,-1,1,'bOUd3xZ6DbAk7PkBHilr5gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-09 06:49:10','2025-04-09 06:49:10','hadesDbSvcUser@172.19.0.1'),(100533,-1,1,'BQnC/bb5J+L/vdg9cfKxRQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-13 13:44:20','2025-02-13 13:44:20','hadesDbSvcUser@172.19.0.1'),(100293,-1,1,'bRElj/MPAdOZBIA9QFGWUwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-17 10:04:43','2024-10-17 10:04:43','hadesDbSvcUser@172.19.0.1'),(100494,-1,1,'brYEuXyBAC3j48fiP6Zj9wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-09 11:34:47','2025-01-09 11:34:47','hadesDbSvcUser@172.19.0.1'),(100177,-1,1,'bsIeU2Itt5l/S481XUEQ+gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-23 04:16:41','2024-08-23 04:16:41','hadesDbSvcUser@172.19.0.1'),(100041,-1,1,'Bu8fieTXnPl5lFtURS2w8qqbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-05-28 05:27:02','2024-05-28 05:27:02','hadesDbSvcUser@172.19.0.1'),(100589,-1,1,'BUi9MVUhVXtbQ3Bdd7cFwwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-09 08:43:04','2025-04-09 08:43:04','hadesDbSvcUser@172.19.0.1'),(100660,-1,1,'BVdjGkO301x6sQCeRPoB2AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-16 10:06:17','2025-05-16 10:06:17','hadesDbSvcUser@172.19.0.1'),(100158,-1,1,'BVWm5yrknGaQuot+7WLB9wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 08:10:08','2024-08-22 08:10:08','hadesDbSvcUser@172.19.0.1'),(100261,-1,1,'BXpm1uFYFUVqVQKm5fbJAwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-30 11:33:27','2024-09-30 11:33:27','hadesDbSvcUser@172.19.0.1'),(100277,-1,1,'c+v0lhMW8sVwn06f96dkSgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-03 09:34:34','2024-10-03 09:34:34','hadesDbSvcUser@172.19.0.1'),(100602,-1,1,'c8bHxKTUkwpELvWBkuO/ngIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-15 10:34:10','2025-04-15 10:34:10','hadesDbSvcUser@172.19.0.1'),(100557,-1,1,'cBV3hkIOFrE1kSLFhVhHUAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-12 13:42:47','2025-03-12 13:42:47','hadesDbSvcUser@172.19.0.1'),(100209,-1,1,'CcOXJJXPLmlKZG9CQKtw9wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 07:32:07','2024-09-12 07:32:07','hadesDbSvcUser@172.19.0.1'),(100227,-1,1,'ccthKcvjLoVwXV+9FjhJIQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-18 06:28:30','2024-09-18 06:28:30','hadesDbSvcUser@172.19.0.1'),(100374,-1,1,'CDhzpZEtQkmjbAT9+eNp6QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-25 04:57:19','2024-11-25 04:57:19','hadesDbSvcUser@172.19.0.1'),(100609,-1,1,'CEogiJf2PZ0tq76aoGcyggIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-16 10:17:23','2025-04-16 10:17:23','hadesDbSvcUser@172.19.0.1'),(100083,-1,1,'CeqJ9L63NkRnRl7ZasrYm6qbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-06-14 08:00:06','2024-06-14 08:00:06','hadesDbSvcUser@172.19.0.1'),(100337,-1,1,'cFy5Ucp/SA9z6qYTrC3QJwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-12 13:31:49','2024-11-12 13:31:49','hadesDbSvcUser@172.19.0.1'),(100582,-1,1,'cHVz5wqFNBdQ5ievtZKspAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-07 06:50:34','2025-04-07 06:50:34','hadesDbSvcUser@172.19.0.1'),(100001,-1,1,'ChYRcIj+aYtV8tY/uGeur81nZHP9B5gpT4GiTiY3xKA=',NULL,1,0,'2024-05-20 09:18:58','2024-05-20 09:18:58','hadesDbSvcUser@172.19.0.1'),(100574,-1,1,'CjNl3MxW98TbXeKzDGmt3AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-02 06:29:56','2025-04-02 06:29:56','hadesDbSvcUser@172.19.0.1'),(100539,-1,1,'ClJQUrwIDAcY9mAmB+aogEgdn2Xc0hK++aVXLBlo9la+FC+IGUE0F7ce5H/J/Ayw',NULL,1,0,'2025-02-20 06:37:33','2025-02-20 06:37:33','hadesDbSvcUser@172.19.0.1'),(100529,-1,1,'Cm6ErbehrXDSnngBu+WymQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-10 13:30:50','2025-02-10 13:30:50','hadesDbSvcUser@172.19.0.1'),(100618,-1,1,'CSKalOIEbupL+Sz0+SjZRAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-17 11:54:14','2025-04-17 11:54:14','hadesDbSvcUser@172.19.0.1'),(100458,-1,1,'ctQVSvvISXdh0oiTW8OVLgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 08:18:28','2024-12-23 08:18:28','hadesDbSvcUser@172.19.0.1'),(100409,-1,1,'cx/SDPxgMsshlTmDQI+aHgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-11 07:27:50','2024-12-11 07:27:50','hadesDbSvcUser@172.19.0.1'),(100640,-1,1,'cYONqiyBq/R63wLsDU8NawIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-23 12:34:47','2025-04-23 12:34:47','hadesDbSvcUser@172.19.0.1'),(100140,-1,1,'d1gCNXnOTq7qLmDAIYxJKwkYhIZm9pvv2mWm4vYsBgE=',NULL,1,0,'2024-08-12 05:51:19','2024-08-12 05:51:19','hadesDbSvcUser@172.19.0.1'),(100510,-1,1,'DCTWkxYQdaVDSVEF2JPRTwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-31 06:10:20','2025-01-31 06:10:20','hadesDbSvcUser@172.19.0.1'),(100283,-1,1,'deUY/WITxiuiu+p5LTJZxwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-11 07:05:49','2024-10-11 07:05:49','hadesDbSvcUser@172.19.0.1'),(100392,-1,1,'DFXquplR/EfaHR1s+ntblQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-06 12:17:43','2024-12-06 12:17:43','hadesDbSvcUser@172.19.0.1'),(100571,-1,1,'dK88BscIolh2xwcvl1w7cQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-27 13:14:48','2025-03-27 13:14:48','hadesDbSvcUser@172.19.0.1'),(100131,-1,1,'DKsvIkYRY/VgTh1ZUH/mHdzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',NULL,1,0,'2024-07-31 07:22:37','2024-07-31 07:22:37','hadesDbSvcUser@172.19.0.1'),(100368,-1,1,'DPPx+H4msRCOA+WpGtvG7AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-20 10:16:06','2024-11-20 10:16:06','hadesDbSvcUser@172.19.0.1'),(100326,-1,1,'Dq7qhRpK2HAIdM33tIJW3wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-05 13:16:45','2024-11-05 13:16:45','hadesDbSvcUser@172.19.0.1'),(100107,-1,1,'dvNQvDbKgZJw7YC1muZjyhOh/nXGByR3DX0roWXWSzY=',NULL,1,0,'2024-07-12 07:08:50','2024-07-12 07:08:50','hadesDbSvcUser@172.19.0.1'),(100000,-1,1,'dy+s5K1rqtzT4Ei1ezUro/d+/qGqepfTRFk+cvvtWkk=',NULL,1,0,'2024-05-20 09:18:51','2024-05-20 09:18:51','hadesDbSvcUser@172.19.0.1'),(100034,-1,1,'dyO0YUIUln1CHk0NMRKcvXuxmmgDk9zG+KPVWNh5sIw=',NULL,1,0,'2024-05-24 14:22:43','2024-05-24 14:22:43','hadesDbSvcUser@172.19.0.1'),(100430,-1,1,'E3nzXDG2Mbo03mJ9Tsj8dgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 12:46:38','2024-12-18 12:46:38','hadesDbSvcUser@172.19.0.1'),(100196,-1,1,'EA7jWJ7sM5jo7JaUw8y6BwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 10:56:49','2024-09-10 10:56:49','hadesDbSvcUser@172.19.0.1'),(100568,-1,1,'EaRiYtYOQJ2QtPa2H5w2JwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-26 13:32:29','2025-03-26 13:32:29','hadesDbSvcUser@172.19.0.1'),(100103,-1,1,'EAZDUJn8t8GFeKPXztK6L9zNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',NULL,1,0,'2024-06-21 06:42:41','2024-06-21 06:42:41','hadesDbSvcUser@172.19.0.1'),(100612,-1,1,'Ec3daXFhgaoGvupJ5aFBLAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-16 12:23:58','2025-04-16 12:23:58','hadesDbSvcUser@172.19.0.1'),(100118,-1,1,'EGMkz4S1R01/YRltzbU61/RmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2024-07-30 13:35:57','2024-07-30 13:35:57','hadesDbSvcUser@172.19.0.1'),(100433,-1,1,'Egn9qCg++0q5xJXreBDR1gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 18:07:46','2024-12-18 18:07:46','hadesDbSvcUser@172.19.0.1'),(100236,-1,1,'eGP9zAMN6bSnpfZaAQp/qAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-18 11:06:28','2024-09-18 11:06:28','hadesDbSvcUser@172.19.0.1'),(100243,-1,1,'eGSgUuf3Dpfnb7WHXdzif9P3kl78wnxTj3gGpqaMfBY=',NULL,1,0,'2024-09-23 07:37:37','2024-09-23 07:37:37','hadesDbSvcUser@172.19.0.1'),(100380,-1,1,'eIDwrpxbD2yOh5waZUP5jQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-28 11:16:25','2024-11-28 11:16:25','hadesDbSvcUser@172.19.0.1'),(100603,-1,1,'eMCCPDWE6W0R58g8uNtVKAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-15 10:58:51','2025-04-15 10:58:51','hadesDbSvcUser@172.19.0.1'),(100543,-1,1,'eMZpJNugJCLEck7YcHd9PgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-26 11:31:01','2025-02-26 11:31:01','hadesDbSvcUser@172.19.0.1'),(100088,-1,1,'eOSlayrcqtQzyBjvlD4Oajq7AjEwZQ5hJ0zi/y3L7YQ=',NULL,1,0,'2024-06-17 05:19:57','2024-06-17 05:19:57','hadesDbSvcUser@172.19.0.1'),(100126,-1,1,'EPbEzYos+zrtOrOaG6OfT/RmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2024-07-31 06:05:57','2024-07-31 06:05:57','hadesDbSvcUser@172.19.0.1'),(100432,-1,1,'erRDYssaZAkNyvV8ibYzBgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 17:03:42','2024-12-18 17:03:42','hadesDbSvcUser@172.19.0.1'),(100016,-1,1,'es97IOjni7NWzDfVtPYw8IzLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',NULL,1,0,'2024-05-21 11:11:44','2024-05-21 11:11:44','hadesDbSvcUser@172.19.0.1'),(100347,-1,1,'eT4a07C5POcxhQSo4PpOYgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 09:56:50','2024-11-13 09:56:50','hadesDbSvcUser@172.19.0.1'),(100314,-1,1,'EVbHRtbVqtG4K21p3YDVlAaXyqNdp5MxwGpmBJYdJCQaEuXozxmytmKkUVCPQoi+',NULL,1,0,'2024-10-28 06:05:54','2024-10-28 06:05:54','hadesDbSvcUser@172.19.0.1'),(100092,-1,1,'EVbHRtbVqtG4K21p3YDVlB2MNlNPNxzdfVkBELjZ2U50uAZJ/LmU/l89OaLLJMo4',NULL,1,0,'2024-06-17 08:17:37','2024-06-17 08:17:37','hadesDbSvcUser@172.19.0.1'),(100091,-1,1,'EVbHRtbVqtG4K21p3YDVlBL22621Ddeqk3t9L//1hf50uAZJ/LmU/l89OaLLJMo4',NULL,1,0,'2024-06-17 08:10:20','2024-06-17 08:10:20','hadesDbSvcUser@172.19.0.1'),(100315,-1,1,'EVbHRtbVqtG4K21p3YDVlDIBcC7o/1CcqczzGbZhc9oaEuXozxmytmKkUVCPQoi+',NULL,1,0,'2024-10-28 06:06:33','2024-10-28 06:06:33','hadesDbSvcUser@172.19.0.1'),(100313,-1,1,'EVbHRtbVqtG4K21p3YDVlFpzioa/woihw37t3uogNfoaEuXozxmytmKkUVCPQoi+',NULL,1,0,'2024-10-28 05:59:07','2024-10-28 05:59:07','hadesDbSvcUser@172.19.0.1'),(100108,-1,1,'EVbHRtbVqtG4K21p3YDVlISlDTxpUE6hCwic2MoxNjP3fv6hqnqX00RZPnL77VpJ',NULL,1,0,'2024-07-16 13:45:56','2024-07-16 13:45:56','hadesDbSvcUser@172.19.0.1'),(100272,-1,1,'EVbHRtbVqtG4K21p3YDVlJzOwTK+ef7rNy2IaX4DGif3fv6hqnqX00RZPnL77VpJ',NULL,1,0,'2024-10-02 04:22:10','2024-10-02 04:22:10','hadesDbSvcUser@172.19.0.1'),(100022,-1,1,'EVbHRtbVqtG4K21p3YDVlPNKanrdrAPOiCbP0QVxDdtuHax/6udH1fEVWWptrbE8',NULL,1,0,'2024-05-22 07:56:31','2024-05-22 07:56:31','hadesDbSvcUser@172.19.0.1'),(100593,-1,1,'eXS1GuwsVrz391BImVhd8gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-09 12:30:55','2025-04-09 12:30:55','hadesDbSvcUser@172.19.0.1'),(100620,-1,1,'exvB5XZXLxousTAalNdZZwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-17 14:09:53','2025-04-17 14:09:53','hadesDbSvcUser@172.19.0.1'),(100275,-1,1,'EyWN6uCDQ+lb0INpwfJR1wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-03 08:09:59','2024-10-03 08:09:59','hadesDbSvcUser@172.19.0.1'),(100384,-1,1,'EzkolBYRU6J8iPSQB73LpgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-03 11:18:18','2024-12-03 11:18:18','hadesDbSvcUser@172.19.0.1'),(100644,-1,1,'F6l1ZAB5r3X343fykLwqUgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-26 05:48:06','2025-04-26 05:48:06','hadesDbSvcUser@172.19.0.1'),(100578,-1,1,'f76aKSfv76SzhTF/Hy4FMwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-03 12:37:17','2025-04-03 12:37:17','hadesDbSvcUser@172.19.0.1'),(100191,-1,1,'f9QqNsZVHydwo9QvQjxiJwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 06:33:31','2024-09-10 06:33:31','hadesDbSvcUser@172.19.0.1'),(100546,-1,1,'Fc+uWjVQvTvBJyd4mmwvCgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-04 13:19:11','2025-03-04 13:19:11','hadesDbSvcUser@172.19.0.1'),(100232,-1,1,'fciR/oeMCxQby5QFiiMDhwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-18 10:52:38','2024-09-18 10:52:38','hadesDbSvcUser@172.19.0.1'),(100054,-1,1,'Fjd6PbIIlXc93U2uMMXpTk1ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',NULL,1,0,'2024-06-06 10:02:32','2024-06-06 10:02:32','hadesDbSvcUser@172.19.0.1'),(100498,-1,1,'FKoJcCzinampAydE6urOUwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-09 12:57:29','2025-01-09 12:57:29','hadesDbSvcUser@172.19.0.1'),(100575,-1,1,'fO9r6r46xTUkFX0fUzT9uAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-03 11:31:30','2025-04-03 11:31:30','hadesDbSvcUser@172.19.0.1'),(100207,-1,1,'fPlTL8FTdl0TVJTQKenFdA==',NULL,1,0,'2024-09-12 07:30:16','2024-09-12 07:30:16','hadesDbSvcUser@172.19.0.1'),(100460,-1,1,'fSb6/QBLmqBHFPhAeGQBIQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 09:05:52','2024-12-23 09:05:52','hadesDbSvcUser@172.19.0.1'),(100452,-1,1,'fSIRJC+W8oRYtMqOq/6hPQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 05:17:56','2024-12-23 05:17:56','hadesDbSvcUser@172.19.0.1'),(100021,-1,1,'FVXj+o2DnhR8zbc4PTTI8+Mbl+xX8J3Se/KyCqenqSKWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-05-22 07:56:05','2024-05-22 07:56:05','hadesDbSvcUser@172.19.0.1'),(100047,-1,1,'FVXj+o2DnhR8zbc4PTTI8zAP3wPtztvG28iTEUNXD9UFQ5puelDI29EHArmO7plI',NULL,1,0,'2024-06-04 12:38:09','2024-06-04 12:38:09','hadesDbSvcUser@172.19.0.1'),(100632,-1,1,'FwKbEDjCwE2vdYXsQEUI/wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-21 08:17:12','2025-04-21 08:17:12','hadesDbSvcUser@172.19.0.1'),(100398,-1,1,'FWtn+ZJo0JPfFCwSGuYs4AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-09 13:09:46','2024-12-09 13:09:46','hadesDbSvcUser@172.19.0.1'),(100123,-1,1,'Fx5x7KZ7RXgo2Wt42FWDPQ==',NULL,1,0,'2024-07-31 05:50:59','2024-07-31 05:50:59','hadesDbSvcUser@172.19.0.1'),(100124,-1,1,'fxExmbWfI3fDfwMvlkbeE91HSDlj6eQJgxPv2kN3ZF8=',NULL,1,0,'2024-07-31 05:57:04','2024-07-31 05:57:04','hadesDbSvcUser@172.19.0.1'),(100198,-1,1,'G0tapicO70obhzAv2Y0kpgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 11:01:33','2024-09-10 11:01:33','hadesDbSvcUser@172.19.0.1'),(100422,-1,1,'G1ecWYn8MNZ+p0fULFkHawIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-17 13:05:47','2024-12-17 13:05:47','hadesDbSvcUser@172.19.0.1'),(100399,-1,1,'G5TfRYtJFkJiofeINfBC9wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-10 09:44:57','2024-12-10 09:44:57','hadesDbSvcUser@172.19.0.1'),(100465,-1,1,'GA9sBii3qM6T6v4zaJJH4wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 11:25:27','2024-12-23 11:25:27','hadesDbSvcUser@172.19.0.1'),(100614,-1,1,'GDXVZ8h78UJbFU3Ds54XUQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-17 05:35:07','2025-04-17 05:35:07','hadesDbSvcUser@172.19.0.1'),(100427,-1,1,'GISwlQDy1BQHbxP7hg/iPQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 08:41:23','2024-12-18 08:41:23','hadesDbSvcUser@172.19.0.1'),(100197,-1,1,'gKxafUshDYH/gDMTRDVSCgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 10:59:44','2024-09-10 10:59:44','hadesDbSvcUser@172.19.0.1'),(100412,-1,1,'gmbNuwvXbKM5JVpFBO88ggIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-12 14:23:58','2024-12-12 14:23:58','hadesDbSvcUser@172.19.0.1'),(100492,-1,1,'gpBmhmNvEtADjeA36BMQmwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-09 08:59:07','2025-01-09 08:59:07','hadesDbSvcUser@172.19.0.1'),(100601,-1,1,'gpml/N3a18ZPMx8Ij8laCAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-15 10:31:26','2025-04-15 10:31:26','hadesDbSvcUser@172.19.0.1'),(100671,-1,1,'gR20j+LQGwZfnPbp6kyKBgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-26 13:01:34','2025-05-26 13:01:34','hadesDbSvcUser@172.19.0.1'),(100567,-1,1,'gRfP4KLesBMmlqtDj5uG0AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-26 13:29:19','2025-03-26 13:29:19','hadesDbSvcUser@172.19.0.1'),(100163,-1,1,'GrIxsl90lxQmIzKEtcEoXQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 08:35:11','2024-08-22 08:35:11','hadesDbSvcUser@172.19.0.1'),(100302,-1,1,'gthS9UrpYhh7DnntVmC4QQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-21 13:22:05','2024-10-21 13:22:05','hadesDbSvcUser@172.19.0.1'),(100085,-1,1,'GU/zLK5CZMW7T4iGCsO38i7EUG8ZU5wmiPHUCSiXdSmWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-06-17 05:10:35','2024-06-17 05:10:35','hadesDbSvcUser@172.19.0.1'),(100086,-1,1,'GU/zLK5CZMW7T4iGCsO38imCZ2OIfqiwDA09nPkXC86WuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-06-17 05:11:01','2024-06-17 05:11:01','hadesDbSvcUser@172.19.0.1'),(100006,-1,1,'GU/zLK5CZMW7T4iGCsO38ozLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',NULL,1,0,'2024-05-21 10:06:53','2024-05-21 10:06:53','hadesDbSvcUser@172.19.0.1'),(100082,-1,1,'GU/zLK5CZMW7T4iGCsO38qAp/KJvKniWawNOj6nezliWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-06-14 05:39:06','2024-06-14 05:39:06','hadesDbSvcUser@172.19.0.1'),(100087,-1,1,'GU/zLK5CZMW7T4iGCsO38sjng6bhklAV5aasIkXAiSaWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-06-17 05:11:49','2024-06-17 05:11:49','hadesDbSvcUser@172.19.0.1'),(100109,-1,1,'GU/zLK5CZMW7T4iGCsO38u0da5vMKVBtPPLY4Vcvp5b3fv6hqnqX00RZPnL77VpJ',NULL,1,0,'2024-07-17 04:54:48','2024-07-17 04:54:48','hadesDbSvcUser@172.19.0.1'),(100228,-1,1,'GzdHB0J5WxTiBe3omiNgRwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-18 06:49:33','2024-09-18 06:49:33','hadesDbSvcUser@172.19.0.1'),(100113,-1,1,'gZOwtaLRAq6HT+rRSu7zEy1lYs7KYqJ4t6g+t8En6RM=',NULL,1,0,'2024-07-25 13:02:10','2024-07-25 13:02:10','hadesDbSvcUser@172.19.0.1'),(100375,-1,1,'GZXLm7STFt9L2OMtAMVP8AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-27 05:37:42','2024-11-27 05:37:42','hadesDbSvcUser@172.19.0.1'),(100266,-1,1,'h3vyZokS8uINrLPev4XqswIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-01 09:28:09','2024-10-01 09:28:09','hadesDbSvcUser@172.19.0.1'),(100534,-1,1,'h4LMBOJOupPgjEL9pKZF6wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-13 14:24:01','2025-02-13 14:24:01','hadesDbSvcUser@172.19.0.1'),(100370,-1,1,'h5Z0nDbpUGup57ZIavl4kAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-20 13:49:31','2024-11-20 13:49:31','hadesDbSvcUser@172.19.0.1'),(100309,-1,1,'Ha1aGGh9FcHUAlRJMijFdQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-24 10:59:17','2024-10-24 10:59:17','hadesDbSvcUser@172.19.0.1'),(100298,-1,1,'HeKWW9zJk0axkbq7qYGKuQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-21 10:43:30','2024-10-21 10:43:30','hadesDbSvcUser@172.19.0.1'),(100353,-1,1,'hfSNgQXvr3CrFHcQ4bJ+zAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-14 07:51:21','2024-11-14 07:51:21','hadesDbSvcUser@172.19.0.1'),(100264,-1,1,'Hi92XTmP8bH6JK3vZMp0MAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-30 13:05:06','2024-09-30 13:05:06','hadesDbSvcUser@172.19.0.1'),(100138,-1,1,'HIkqI6o6mboQNlI9DnX1WtP3kl78wnxTj3gGpqaMfBY=',NULL,1,0,'2024-08-09 09:52:38','2024-08-09 09:52:38','hadesDbSvcUser@172.19.0.1'),(100547,-1,1,'hoAd8igEGcTZ964Pug8HpwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-05 13:25:10','2025-03-05 13:25:10','hadesDbSvcUser@172.19.0.1'),(100516,-1,1,'HoRzSOqcDjI7dB7hkUgAowIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-03 04:49:22','2025-02-03 04:49:22','hadesDbSvcUser@172.19.0.1'),(100319,-1,1,'HqBFEot+6JKZhxR61KdpB6H0ot+k86WbxHgYWoXL28M=',NULL,1,0,'2024-10-30 07:00:09','2024-10-30 07:00:09','hadesDbSvcUser@172.19.0.1'),(100581,-1,1,'hQGvXi5OXT2f0oRdyIsyqgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-07 06:01:15','2025-04-07 06:01:15','hadesDbSvcUser@172.19.0.1'),(100424,-1,1,'hRKu7sSjfwqYSnX3IqjQxgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 06:56:09','2024-12-18 06:56:09','hadesDbSvcUser@172.19.0.1'),(100299,-1,1,'HsN656rmqMhehUEPVBYWiQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-21 10:53:47','2024-10-21 10:53:47','hadesDbSvcUser@172.19.0.1'),(100475,-1,1,'HTKlHvFnjjOUozu+VNr4ZQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-24 08:05:38','2024-12-24 08:05:38','hadesDbSvcUser@172.19.0.1'),(100160,-1,1,'HyW2vYED5QISS8vszVJaXQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 08:19:58','2024-08-22 08:19:58','hadesDbSvcUser@172.19.0.1'),(100324,-1,1,'Hz9BnjXKcqxezyLrlFxsJAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-05 09:46:46','2024-11-05 09:46:46','hadesDbSvcUser@172.19.0.1'),(100419,-1,1,'I4D1yYUUUBYpbmxV11Fe8QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-17 09:40:37','2024-12-17 09:40:37','hadesDbSvcUser@172.19.0.1'),(100636,-1,1,'i4OpMQzqoNg+4UZ1N63SiQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-21 12:43:48','2025-04-21 12:43:48','hadesDbSvcUser@172.19.0.1'),(100162,-1,1,'ie8raYLlggIPdBLAdC0P2AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 08:32:04','2024-08-22 08:32:04','hadesDbSvcUser@172.19.0.1'),(100340,-1,1,'iKh7URGMGIl7XFjfJPM4MQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 08:16:09','2024-11-13 08:16:09','hadesDbSvcUser@172.19.0.1'),(100061,-1,1,'imAwq7zMTFRnIWPpork8HXnpSdWG9tovPlrW1d0hdVQ=',NULL,1,0,'2024-06-11 05:08:09','2024-06-11 05:08:09','hadesDbSvcUser@172.19.0.1'),(100628,-1,1,'InB28wtnluFRhRVBaYhNnwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-21 05:55:24','2025-04-21 05:55:24','hadesDbSvcUser@172.19.0.1'),(100084,-1,1,'ip6edb8io4m+Xiyu1caBSGNi/aBX/MmkB56Ua29L6mMaEuXozxmytmKkUVCPQoi+',NULL,1,0,'2024-06-14 09:19:10','2024-06-14 09:19:10','hadesDbSvcUser@172.19.0.1'),(100043,-1,1,'ip6edb8io4m+Xiyu1caBSIzLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',NULL,1,0,'2024-05-30 06:37:24','2024-05-30 06:37:24','hadesDbSvcUser@172.19.0.1'),(100042,-1,1,'iRKsFpVIZXhdN62KWUikqaAp/KJvKniWawNOj6nezliWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-05-29 08:50:10','2024-05-29 08:50:10','hadesDbSvcUser@172.19.0.1'),(100023,-1,1,'iRKsFpVIZXhdN62KWUikqYzLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',NULL,1,0,'2024-05-22 07:56:50','2024-05-22 07:56:50','hadesDbSvcUser@172.19.0.1'),(100653,-1,1,'IRu43WR7TWF9Geb1/+r3/wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-06 08:58:47','2025-05-06 08:58:47','hadesDbSvcUser@172.19.0.1'),(100074,-1,1,'IsIV7AZsoQP0E7wVzx2JKqqbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-06-13 06:03:26','2024-06-13 06:03:26','hadesDbSvcUser@172.19.0.1'),(100624,-1,1,'IukdvldMa/4OOVhRovFj7wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-19 10:21:42','2025-04-19 10:21:42','hadesDbSvcUser@172.19.0.1'),(100354,-1,1,'IwakwkFVecDRnmyuOS+SPwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-14 09:59:13','2024-11-14 09:59:13','hadesDbSvcUser@172.19.0.1'),(100379,-1,1,'ix8OcwGj6it4zAmyYFv88gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-28 10:59:30','2024-11-28 10:59:30','hadesDbSvcUser@172.19.0.1'),(100186,-1,1,'Ixu8XwKI/RapUCb1Yysc+AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 06:15:05','2024-09-10 06:15:05','hadesDbSvcUser@172.19.0.1'),(100420,-1,1,'iyE0YnsMPaN+AVEOHzh62AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-17 11:40:39','2024-12-17 11:40:39','hadesDbSvcUser@172.19.0.1'),(100323,-1,1,'izAwWniRqTZWfZW0yMwKzAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-05 09:24:52','2024-11-05 09:24:52','hadesDbSvcUser@172.19.0.1'),(100144,-1,1,'j5e83sp0io+JJqTCmBI12Q==',NULL,1,0,'2024-08-21 11:31:21','2024-08-21 11:31:21','hadesDbSvcUser@172.19.0.1'),(100233,-1,1,'j8m/E/ZQ/odrLg8KoBx6fAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-18 11:01:46','2024-09-18 11:01:46','hadesDbSvcUser@172.19.0.1'),(100178,-1,1,'j8uwYVh/h0IwgxTz5nQP5uMbl+xX8J3Se/KyCqenqSKWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-08-26 10:04:54','2024-08-26 10:04:54','hadesDbSvcUser@172.19.0.1'),(100473,-1,1,'j9AJOhl165Fkz0lqfGCphwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 14:45:19','2024-12-23 14:45:19','hadesDbSvcUser@172.19.0.1'),(100248,-1,1,'JaKlx4yQjCAclRHx9t2N7gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-25 08:18:11','2024-09-25 08:18:11','hadesDbSvcUser@172.19.0.1'),(6030,-1,1,'jb9O7b79HBAxnCj+JRT/jc1nZHP9B5gpT4GiTiY3xKA=',NULL,1,0,'2024-05-20 09:17:34','2024-05-21 06:34:34','root@172.19.0.1'),(100071,-1,1,'jbfBRja70On8qadaDw4riV1WK18j4VyC7YL6ehihueI=',NULL,1,0,'2024-06-11 05:55:24','2024-06-11 05:55:24','hadesDbSvcUser@172.19.0.1'),(100182,-1,1,'jDjhEvM/oTSCln/TA26AjZki4ciB+M5QlFOMGo08lhI=',NULL,1,0,'2024-09-10 00:08:43','2024-09-10 00:08:43','hadesDbSvcUser@172.19.0.1'),(100286,-1,1,'jEZHGKG6VxjP873l4ozFa3wjthlhujXEm2gygJg+ZIc=',NULL,1,0,'2024-10-14 10:00:04','2024-10-14 10:00:04','hadesDbSvcUser@172.19.0.1'),(100322,-1,1,'jf9MwYGuovJUBzVON3RYugIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-05 08:34:52','2024-11-05 08:34:52','hadesDbSvcUser@172.19.0.1'),(100289,-1,1,'JH7fGlfuhJF29/UNtav7WQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-16 13:33:53','2024-10-16 13:33:53','hadesDbSvcUser@172.19.0.1'),(100200,-1,1,'JIKf2Tcyi5y9oRiJAd4IxQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 06:11:46','2024-09-12 06:11:46','hadesDbSvcUser@172.19.0.1'),(100156,-1,1,'jjhy6Yjs154u5wqTJM6EsQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 08:00:13','2024-08-22 08:00:13','hadesDbSvcUser@172.19.0.1'),(100527,-1,1,'jLtnUhkvTN7Co12I4xW7CAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-06 12:30:54','2025-02-06 12:30:54','hadesDbSvcUser@172.19.0.1'),(100304,-1,1,'jMILYwm/QQCAUTOJphUwCwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-22 05:08:58','2024-10-22 05:08:58','hadesDbSvcUser@172.19.0.1'),(100251,-1,1,'jNTJyKiYhpdk0Malk2vLUgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-25 10:45:33','2024-09-25 10:45:33','hadesDbSvcUser@172.19.0.1'),(100435,-1,1,'jo99ukzHRTFBg+63GJf4pAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 19:29:18','2024-12-18 19:29:18','hadesDbSvcUser@172.19.0.1'),(100101,-1,1,'JoIEm6guWh4YXBRIAro+791HSDlj6eQJgxPv2kN3ZF8=',NULL,1,0,'2024-06-20 07:57:55','2024-06-20 07:57:55','hadesDbSvcUser@172.19.0.1'),(100271,-1,1,'jPrV9KJvScqWaxmHoCXf6QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-01 13:36:21','2024-10-01 13:36:21','hadesDbSvcUser@172.19.0.1'),(100500,-1,1,'jsOM/2JtVbuE1Oav5W5ycAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-10 10:21:58','2025-01-10 10:21:58','hadesDbSvcUser@172.19.0.1'),(100346,-1,1,'jxnvUelMeYoAXp9MereDLQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 09:55:13','2024-11-13 09:55:13','hadesDbSvcUser@172.19.0.1'),(100595,-1,1,'k/Ofz6+40Rjvk58STG59ZAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-14 12:39:02','2025-04-14 12:39:02','hadesDbSvcUser@172.19.0.1'),(100276,-1,1,'k+G/lvpvsH4Fh4+fE999NwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-03 08:14:13','2024-10-03 08:14:13','hadesDbSvcUser@172.19.0.1'),(100418,-1,1,'k71BBun6tpDM8ONBDqDBpAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-17 08:41:48','2024-12-17 08:41:48','hadesDbSvcUser@172.19.0.1'),(100378,-1,1,'k9Q+paT8eEdFuhJXNWkDewIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-28 09:43:56','2024-11-28 09:43:56','hadesDbSvcUser@172.19.0.1'),(100372,-1,1,'KAo79RzsIrELx9jHJ4WhLwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-21 13:23:42','2024-11-21 13:23:42','hadesDbSvcUser@172.19.0.1'),(100114,-1,1,'kBKdVhKA1z6w2qrH1o8XX01ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',NULL,1,0,'2024-07-30 06:17:15','2024-07-30 06:17:15','hadesDbSvcUser@172.19.0.1'),(100385,-1,1,'kCfL9BOV0Xt6wAhflCnVKwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-03 13:57:16','2024-12-03 13:57:16','hadesDbSvcUser@172.19.0.1'),(100274,-1,1,'kcxn5XccYxtMq3JOvXvvagIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-03 06:17:41','2024-10-03 06:17:41','hadesDbSvcUser@172.19.0.1'),(100280,-1,1,'KKZg4LPdXRRon1xvnPv+mwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-07 06:26:35','2024-10-07 06:26:35','hadesDbSvcUser@172.19.0.1'),(100558,-1,1,'KmgmCbH9EyMlvy0MzBVe8QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-18 11:30:33','2025-03-18 11:30:33','hadesDbSvcUser@172.19.0.1'),(100580,-1,1,'KRJBaAGuolp1+7rElbKn2QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-04 11:39:32','2025-04-04 11:39:32','hadesDbSvcUser@172.19.0.1'),(100032,-1,1,'krofTW9KA+UcRJuKV/PAL/G7eBhK375QlnQo3lVX23Y=',NULL,1,0,'2024-05-24 14:10:43','2024-05-24 14:10:43','hadesDbSvcUser@172.19.0.1'),(100244,-1,1,'kuAPFdcCtRrvvNdaSBfcagIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-24 04:28:16','2024-09-24 04:28:16','hadesDbSvcUser@172.19.0.1'),(100175,-1,1,'kuNHR7BhRwHgv36G2WU8wwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 13:24:04','2024-08-22 13:24:04','hadesDbSvcUser@172.19.0.1'),(100615,-1,1,'KwYbX6BZPY8HJxj6bQnQqQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-17 08:33:51','2025-04-17 08:33:51','hadesDbSvcUser@172.19.0.1'),(100128,-1,1,'KXzsi4cr4vHL1jgF+e5YFPRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2024-07-31 06:13:25','2024-07-31 06:13:25','hadesDbSvcUser@172.19.0.1'),(100282,-1,1,'l12VO78ni12PvVLJzt6NnwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-11 06:44:36','2024-10-11 06:44:36','hadesDbSvcUser@172.19.0.1'),(100576,-1,1,'l2xhLcCfKFE5FGk1UaXhKgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-03 11:47:06','2025-04-03 11:47:06','hadesDbSvcUser@172.19.0.1'),(100093,-1,1,'L3xahzmziP/0ONyqlw6Jo9P3kl78wnxTj3gGpqaMfBY=',NULL,1,0,'2024-06-17 08:33:01','2024-06-17 08:33:01','hadesDbSvcUser@172.19.0.1'),(100562,-1,1,'LcEqg6iB6JY6qV8QL3qLYgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-20 13:15:26','2025-03-20 13:15:26','hadesDbSvcUser@172.19.0.1'),(100037,-1,1,'lcQacSc+Bue9cvGx//Ar0OgbzgfgprHG9Qq90Dqdxm4=',NULL,1,0,'2024-05-24 14:56:08','2024-05-24 14:56:08','hadesDbSvcUser@172.19.0.1'),(100258,-1,1,'ldC3iAn9d67DGmC00SNm4AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-30 06:19:17','2024-09-30 06:19:17','hadesDbSvcUser@172.19.0.1'),(100104,-1,1,'lHF8ngYPfKhf2WjMEhdzWc1nZHP9B5gpT4GiTiY3xKA=',NULL,1,0,'2024-07-08 05:01:50','2024-07-08 05:01:50','hadesDbSvcUser@172.19.0.1'),(100310,-1,1,'Lhn7qhjO1gfI8UiT0IFjp6H0ot+k86WbxHgYWoXL28M=',NULL,1,0,'2024-10-25 02:45:32','2024-10-25 02:45:32','hadesDbSvcUser@172.19.0.1'),(100454,-1,1,'lIeKSZxQ5fB74N/rS6zHuAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 05:41:45','2024-12-23 05:41:45','hadesDbSvcUser@172.19.0.1'),(100402,-1,1,'ljGZ3/EQj3fzEkpUY1XjiQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-10 13:18:15','2024-12-10 13:18:15','hadesDbSvcUser@172.19.0.1'),(100129,-1,1,'lJjEW+ZJxJCKpedAC2qyFN1HSDlj6eQJgxPv2kN3ZF8=',NULL,1,0,'2024-07-31 06:41:18','2024-07-31 06:41:18','hadesDbSvcUser@172.19.0.1'),(100151,-1,1,'LKXF5o2rHWME+6frBiagkwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-21 12:41:49','2024-08-21 12:41:49','hadesDbSvcUser@172.19.0.1'),(100555,-1,1,'llRHIiA3Jx0jIHYpHMEB+AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-06 14:07:59','2025-03-06 14:07:59','hadesDbSvcUser@172.19.0.1'),(100406,-1,1,'LlSwbnP9QRQrW/R4d+FEWgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-11 05:42:06','2024-12-11 05:42:06','hadesDbSvcUser@172.19.0.1'),(100203,-1,1,'LltfW2Kzxy298rYGEfzwngIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 07:25:25','2024-09-12 07:25:25','hadesDbSvcUser@172.19.0.1'),(100496,-1,1,'LmzcWe/bOxKzevopTYqJ0QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-09 11:37:00','2025-01-09 11:37:00','hadesDbSvcUser@172.19.0.1'),(100544,-1,1,'ln8aQIoJkhL6lb3walHaagIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-27 07:48:24','2025-02-27 07:48:24','hadesDbSvcUser@172.19.0.1'),(100300,-1,1,'lNC36wzSOFIHqznnIwK9vAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-21 11:57:08','2024-10-21 11:57:08','hadesDbSvcUser@172.19.0.1'),(100393,-1,1,'lP5k55xaM8NvdLoG9XCx4QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-06 12:25:21','2024-12-06 12:25:21','hadesDbSvcUser@172.19.0.1'),(100545,-1,1,'lpyiptId7c/T/buyfQ1ukgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-04 13:13:05','2025-03-04 13:13:05','hadesDbSvcUser@172.19.0.1'),(100577,-1,1,'lTKvTPwba4bZtnbdjFFyUwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-03 12:35:57','2025-04-03 12:35:57','hadesDbSvcUser@172.19.0.1'),(100453,-1,1,'Lvr2UTUlXSW29Yw/U/4QBAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 05:24:26','2024-12-23 05:24:26','hadesDbSvcUser@172.19.0.1'),(100627,-1,1,'LWUD8XEMKJ4eaUdjmN0oXwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-20 07:37:05','2025-04-20 07:37:05','hadesDbSvcUser@172.19.0.1'),(100222,-1,1,'lZ59kMsGNexrhsV0HNawgwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-16 09:33:43','2024-09-16 09:33:43','hadesDbSvcUser@172.19.0.1'),(100413,-1,1,'LzJvqHnRg3jpAvqZAp+I8wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-13 12:11:23','2024-12-13 12:11:23','hadesDbSvcUser@172.19.0.1'),(100173,-1,1,'m2If++3y3EBgKcmBdc7hFwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 13:21:31','2024-08-22 13:21:31','hadesDbSvcUser@172.19.0.1'),(100445,-1,1,'m8Qne4KrpdSR7fAgEGpNvwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-20 04:39:24','2024-12-20 04:39:24','hadesDbSvcUser@172.19.0.1'),(100472,-1,1,'mdLhmRwhca7Km/NAjmzc3wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 14:35:25','2024-12-23 14:35:25','hadesDbSvcUser@172.19.0.1'),(100592,-1,1,'mF6MP+h0Qkmmonxec3UohwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-09 11:25:34','2025-04-09 11:25:34','hadesDbSvcUser@172.19.0.1'),(100287,-1,1,'MJ3bNVrZalju6eMj8Kd7dwkYhIZm9pvv2mWm4vYsBgE=',NULL,1,0,'2024-10-14 10:03:05','2024-10-14 10:03:05','hadesDbSvcUser@172.19.0.1'),(100431,-1,1,'mJvwljF0lIMVDXYv30KofwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 13:34:33','2024-12-18 13:34:33','hadesDbSvcUser@172.19.0.1'),(100296,-1,1,'MLs1Rt9lf/ejQrWInoJpNQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-18 04:35:05','2024-10-18 04:35:05','hadesDbSvcUser@172.19.0.1'),(100199,-1,1,'mm7kZ9pBU62ZpbUrprcBogIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 11:21:02','2024-09-10 11:21:02','hadesDbSvcUser@172.19.0.1'),(100613,-1,1,'mM80XvOfIkQxamtSaCaaGgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-16 14:46:59','2025-04-16 14:46:59','hadesDbSvcUser@172.19.0.1'),(100610,-1,1,'Mmcp3l7WpJjIBrDgn1pt0AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-16 11:39:45','2025-04-16 11:39:45','hadesDbSvcUser@172.19.0.1'),(100235,-1,1,'MMrf6wQUjHH4ODHFTUcadwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-18 11:05:17','2024-09-18 11:05:17','hadesDbSvcUser@172.19.0.1'),(100179,-1,1,'mNoNBX2cx7lQRM6d1mfPtwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-02 05:02:50','2024-09-02 05:02:50','hadesDbSvcUser@172.19.0.1'),(100552,-1,1,'MOP6moDVwDD5OysYqMugkwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-06 11:05:51','2025-03-06 11:05:51','hadesDbSvcUser@172.19.0.1'),(100017,-1,1,'mpEeDY2xfVO2JhVo/31CVIzLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',NULL,1,0,'2024-05-21 11:52:28','2024-05-21 11:52:28','hadesDbSvcUser@172.19.0.1'),(100081,-1,1,'mpEeDY2xfVO2JhVo/31CVKAp/KJvKniWawNOj6nezliWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-06-13 12:46:12','2024-06-13 12:46:12','hadesDbSvcUser@172.19.0.1'),(100333,-1,1,'MrQqt1QHIByQ2YxxK5fU9gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-11 11:56:45','2024-11-11 11:56:45','hadesDbSvcUser@172.19.0.1'),(100481,-1,1,'MRYGy9XSm8P+qlijbT2TaQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-24 11:25:57','2024-12-24 11:25:57','hadesDbSvcUser@172.19.0.1'),(100102,-1,1,'mT0wuKEqzvR6Q+lTTy9Zbeo1sH0hpz92RsgopHt8Nwk=',NULL,1,0,'2024-06-20 08:18:40','2024-06-20 08:18:40','hadesDbSvcUser@172.19.0.1'),(100450,-1,1,'n/GSNJNi1P4ikRiCGc7c+QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-20 11:42:39','2024-12-20 11:42:39','hadesDbSvcUser@172.19.0.1'),(100626,-1,1,'N/kzlezNzlbnVI8HV6xiPAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-19 15:48:25','2025-04-19 15:48:25','hadesDbSvcUser@172.19.0.1'),(100367,-1,1,'N850RUTfTacEVHodX6WopwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-20 10:07:05','2024-11-20 10:07:05','hadesDbSvcUser@172.19.0.1'),(100295,-1,1,'NAD2B7B/GYoxiiq8AATKjAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-17 10:56:24','2024-10-17 10:56:24','hadesDbSvcUser@172.19.0.1'),(100079,-1,1,'Nb4u/m2mW+BR4Fjn7vIbjhGM9d20fnGZ8chUxhvIY0NuHax/6udH1fEVWWptrbE8',NULL,1,0,'2024-06-13 06:50:29','2024-06-13 06:50:29','hadesDbSvcUser@172.19.0.1'),(100046,-1,1,'Nb4u/m2mW+BR4Fjn7vIbjjs6MYFKX1sVua1f93wik+i+FC+IGUE0F7ce5H/J/Ayw',NULL,1,0,'2024-06-03 14:25:16','2024-06-03 14:25:16','hadesDbSvcUser@172.19.0.1'),(100094,-1,1,'Nb4u/m2mW+BR4Fjn7vIbjkJCpsDroum1n3lznHboU4enC6KEa+Bi4A4uCnIIVcLp',NULL,1,0,'2024-06-17 08:34:09','2024-06-17 08:34:09','hadesDbSvcUser@172.19.0.1'),(100331,-1,1,'Nb4u/m2mW+BR4Fjn7vIbjnhH8rVHzwMHHwtKSNvBXpJuHax/6udH1fEVWWptrbE8',NULL,1,0,'2024-11-08 06:10:06','2024-11-08 06:10:06','hadesDbSvcUser@172.19.0.1'),(100005,-1,1,'Nb4u/m2mW+BR4Fjn7vIbjnsQzcCtEsLGZtL1oqhOTOw=',NULL,1,0,'2024-05-21 10:06:25','2024-05-21 10:06:25','hadesDbSvcUser@172.19.0.1'),(100024,-1,1,'Nb4u/m2mW+BR4Fjn7vIbjrn7PqYMYEoh+g8FEchJeEldVitfI+Fcgu2C+noYobni',NULL,1,0,'2024-05-22 08:32:14','2024-05-22 08:32:14','hadesDbSvcUser@172.19.0.1'),(100031,-1,1,'Nb4u/m2mW+BR4Fjn7vIbjtOijPxGeEKvhKtwbeJHoy3dR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2024-05-24 04:01:47','2024-05-24 04:01:47','hadesDbSvcUser@172.19.0.1'),(100080,-1,1,'Nb4u/m2mW+BR4Fjn7vIbjv+9HMvk8clJYyZqu6yQLy3NZ2Rz/QeYKU+Bok4mN8Sg',NULL,1,0,'2024-06-13 12:02:27','2024-06-13 12:02:27','hadesDbSvcUser@172.19.0.1'),(100149,-1,1,'NDc27N/9SevTCo0h3Hdt5QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-21 12:37:16','2024-08-21 12:37:16','hadesDbSvcUser@172.19.0.1'),(100377,-1,1,'NDD9a+F5uDRZPMdu4vRlCQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-27 12:18:07','2024-11-27 12:18:07','hadesDbSvcUser@172.19.0.1'),(100387,-1,1,'NFsCX/01BTFvAlO5k5PUNAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-05 11:54:53','2024-12-05 11:54:53','hadesDbSvcUser@172.19.0.1'),(100414,-1,1,'ngdR2jXgGmTf0ci9P4u95QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-16 11:18:57','2024-12-16 11:18:57','hadesDbSvcUser@172.19.0.1'),(100471,-1,1,'njdjbdvv9s4T6ltSOPOmJQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 14:34:40','2024-12-23 14:34:40','hadesDbSvcUser@172.19.0.1'),(100426,-1,1,'NjGSDxDX78A11LONASw1TwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 08:01:16','2024-12-18 08:01:16','hadesDbSvcUser@172.19.0.1'),(100511,-1,1,'nl3dSCbvEq4oX+sBQK1TYgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-31 07:03:01','2025-01-31 07:03:01','hadesDbSvcUser@172.19.0.1'),(100012,-1,1,'NLC3hcm8WG+nSdyA+chNF9P3kl78wnxTj3gGpqaMfBY=',NULL,1,0,'2024-05-21 10:52:29','2024-05-21 10:52:29','hadesDbSvcUser@172.19.0.1'),(100216,-1,1,'NlvbX9TI2JD7M7jLyqsrTwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-15 17:16:21','2024-09-15 17:16:21','hadesDbSvcUser@172.19.0.1'),(100048,-1,1,'Nm9RxQARjt/36tArxRGOU6cLooRr4GLgDi4KcghVwuk=',NULL,1,0,'2024-06-06 05:49:09','2024-06-06 05:49:09','hadesDbSvcUser@172.19.0.1'),(100238,-1,1,'nMyPIIVHO8xnmLhw7AHpVrCelWXP7fK/9Hc9yMrB3Rw=',NULL,1,0,'2024-09-20 02:03:52','2024-09-20 02:03:52','hadesDbSvcUser@172.19.0.1'),(100284,-1,1,'NnK7crJaj4azpvNWECMNbtzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',NULL,1,0,'2024-10-14 09:15:00','2024-10-14 09:15:00','hadesDbSvcUser@172.19.0.1'),(100421,-1,1,'No96R4DnUpHGPr68ou/mxAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-17 13:03:41','2024-12-17 13:03:41','hadesDbSvcUser@172.19.0.1'),(100386,-1,1,'nrEBPTzLiuniatLkC5veyAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-04 05:27:05','2024-12-04 05:27:05','hadesDbSvcUser@172.19.0.1'),(100311,-1,1,'NYl3VREtyiLIYFeIZKQ8NJki4ciB+M5QlFOMGo08lhI=',NULL,1,0,'2024-10-28 02:08:19','2024-10-28 02:08:19','hadesDbSvcUser@172.19.0.1'),(100057,-1,1,'nZFXXyqrNkPEHAqrf8d1pOo1sH0hpz92RsgopHt8Nwk=',NULL,1,0,'2024-06-11 05:06:55','2024-06-11 05:06:55','hadesDbSvcUser@172.19.0.1'),(100515,-1,1,'O/eK0CDCi6q0851jaWlSLgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-31 13:21:59','2025-01-31 13:21:59','hadesDbSvcUser@172.19.0.1'),(100230,-1,1,'O1FNIEk4CvHqWavjuWZubwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-18 10:41:32','2024-09-18 10:41:32','hadesDbSvcUser@172.19.0.1'),(100442,-1,1,'O5+HAvx1PH+xwAg7d4N5rQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-19 11:42:05','2024-12-19 11:42:05','hadesDbSvcUser@172.19.0.1'),(100220,-1,1,'o6valkZw9nkZB6rThJ1SuAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-16 07:44:55','2024-09-16 07:44:55','hadesDbSvcUser@172.19.0.1'),(100141,-1,1,'O84XRAvqGVw3OSC23D+oPT/6DYepJztmk8RXaS2cVqQ=',NULL,1,0,'2024-08-13 07:27:55','2024-08-13 07:27:55','hadesDbSvcUser@172.19.0.1'),(100134,-1,1,'o8Yfknhcn7NHs0F37OCQPAkYhIZm9pvv2mWm4vYsBgE=',NULL,1,0,'2024-08-07 08:11:01','2024-08-07 08:11:01','hadesDbSvcUser@172.19.0.1'),(100055,-1,1,'O9wNBTqUJTT/Ar/uGhDHQi7EUG8ZU5wmiPHUCSiXdSmWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-06-06 13:27:23','2024-06-06 13:27:23','hadesDbSvcUser@172.19.0.1'),(100028,-1,1,'O9wNBTqUJTT/Ar/uGhDHQozLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',NULL,1,0,'2024-05-23 09:45:53','2024-05-23 09:45:53','hadesDbSvcUser@172.19.0.1'),(100030,-1,1,'O9wNBTqUJTT/Ar/uGhDHQqAp/KJvKniWawNOj6nezliWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-05-24 04:01:47','2024-05-24 04:01:47','hadesDbSvcUser@172.19.0.1'),(100014,-1,1,'OA+IVHAtulw2FB7UzuX5Zh5klR+ibPcwa1GdtTGKoAKdqkE+KBk1Ew1JWUWG+i2t',NULL,1,0,'2024-05-21 11:11:18','2024-05-21 11:11:18','hadesDbSvcUser@172.19.0.1'),(100045,-1,1,'OA+IVHAtulw2FB7UzuX5ZhNeS5Oon/satPNNKnFiM6DNZ2Rz/QeYKU+Bok4mN8Sg',NULL,1,0,'2024-06-03 07:12:56','2024-06-03 07:12:56','hadesDbSvcUser@172.19.0.1'),(100018,-1,1,'oci3gGFRieJglk0hNChzIm4KH+VNyT1gjz9ayACiS5g=',NULL,1,0,'2024-05-21 12:12:10','2024-05-21 12:12:10','hadesDbSvcUser@172.19.0.1'),(100670,-1,1,'Oe+kSbSsGOh4I1KqiKMu2gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-22 13:39:18','2025-05-22 13:39:18','hadesDbSvcUser@172.19.0.1'),(100518,-1,1,'oe5f+qyw6GRr2kw0iLsEIQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-03 08:15:09','2025-02-03 08:15:09','hadesDbSvcUser@172.19.0.1'),(100505,-1,1,'OGf0+UXKiYpsWWwdcBAyygIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-13 11:26:01','2025-01-13 11:26:01','hadesDbSvcUser@172.19.0.1'),(100121,-1,1,'ohbArri3woz2uzR+AmwBE11WK18j4VyC7YL6ehihueI=',NULL,1,0,'2024-07-31 05:47:03','2024-07-31 05:47:03','hadesDbSvcUser@172.19.0.1'),(100461,-1,1,'Ohm5MPv+W+m8wh2GdH21awIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 09:36:38','2024-12-23 09:36:38','hadesDbSvcUser@172.19.0.1'),(100466,-1,1,'omqNq8a0UsdqS5QhBQ7FrQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 12:04:35','2024-12-23 12:04:35','hadesDbSvcUser@172.19.0.1'),(100185,-1,1,'on8RPi0GZUejmDS8qQNL1QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 06:13:22','2024-09-10 06:13:22','hadesDbSvcUser@172.19.0.1'),(100116,-1,1,'Onp59GLQy+eqRVtmPHqYffRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2024-07-30 13:20:20','2024-07-30 13:20:20','hadesDbSvcUser@172.19.0.1'),(100596,-1,1,'OOb+QCu8N8d/0U810SAZMAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-14 12:40:22','2025-04-14 12:40:22','hadesDbSvcUser@172.19.0.1'),(100332,-1,1,'OPX8jxDcIcdBfkdJ8GYXyQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-08 12:23:02','2024-11-08 12:23:02','hadesDbSvcUser@172.19.0.1'),(100376,-1,1,'OrmbEpBtbn9z+tMgyy0YkQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-27 05:45:43','2024-11-27 05:45:43','hadesDbSvcUser@172.19.0.1'),(100622,-1,1,'OTHq4SYVXLLlw837nHVxWAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-18 11:26:46','2025-04-18 11:26:46','hadesDbSvcUser@172.19.0.1'),(100192,-1,1,'oUOzvnYVmH8dhbcSBTpePgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 06:34:59','2024-09-10 06:34:59','hadesDbSvcUser@172.19.0.1'),(100560,-1,1,'OUVZdxLtVjPexyS1mJosawIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-18 13:24:52','2025-03-18 13:24:52','hadesDbSvcUser@172.19.0.1'),(100359,-1,1,'OV/+1LE5UMs29lUzB2y/KAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-14 12:29:11','2024-11-14 12:29:11','hadesDbSvcUser@172.19.0.1'),(100573,-1,1,'ozBpd0CIs7h28bvsrT8fxgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-01 13:22:42','2025-04-01 13:22:42','hadesDbSvcUser@172.19.0.1'),(100130,-1,1,'p0/f2PJkSWD6CUOKrdW8XV1WK18j4VyC7YL6ehihueI=',NULL,1,0,'2024-07-31 06:47:06','2024-07-31 06:47:06','hadesDbSvcUser@172.19.0.1'),(100188,-1,1,'p2wwGyBB7lCo6EFwcOr5lwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 06:17:48','2024-09-10 06:17:48','hadesDbSvcUser@172.19.0.1'),(100342,-1,1,'p5EQ7OhhWiMkPKN3oV3YxQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 08:40:18','2024-11-13 08:40:18','hadesDbSvcUser@172.19.0.1'),(100132,-1,1,'P7d1UH9lnbLMMzvZBxSRCdzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',NULL,1,0,'2024-07-31 07:24:37','2024-07-31 07:24:37','hadesDbSvcUser@172.19.0.1'),(100629,-1,1,'PbyMCIRBM6f+cAdkwe0AKQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-21 05:58:28','2025-04-21 05:58:28','hadesDbSvcUser@172.19.0.1'),(100341,-1,1,'PCw5AescmkekAsvw+3X9hgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 08:27:34','2024-11-13 08:27:34','hadesDbSvcUser@172.19.0.1'),(100328,-1,1,'pCZ5uCW8ks/WgaqocqtnaAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-07 12:23:44','2024-11-07 12:23:44','hadesDbSvcUser@172.19.0.1'),(100214,-1,1,'PF26u19wwfH99UvJut3ckaH0ot+k86WbxHgYWoXL28M=',NULL,1,0,'2024-09-13 05:07:43','2024-09-13 05:07:43','hadesDbSvcUser@172.19.0.1'),(100059,-1,1,'pFXmFZW7HMUXq/VjKigo5qqbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-06-11 05:08:08','2024-06-11 05:08:08','hadesDbSvcUser@172.19.0.1'),(100405,-1,1,'pG1MMY0CvP7bSof2OKPMbgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-10 15:24:34','2024-12-10 15:24:34','hadesDbSvcUser@172.19.0.1'),(100013,-1,1,'pjWwVPG0aRjoHZJ4lzQNQ9P3kl78wnxTj3gGpqaMfBY=',NULL,1,0,'2024-05-21 10:54:26','2024-05-21 10:54:26','hadesDbSvcUser@172.19.0.1'),(100512,-1,1,'Pk9J3p9SxITRNx43g6uatgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-31 10:34:08','2025-01-31 10:34:08','hadesDbSvcUser@172.19.0.1'),(100064,-1,1,'PllWEA1+QSDpzpY1Tgl8xA==',NULL,1,0,'2024-06-11 05:09:42','2024-06-11 05:09:42','hadesDbSvcUser@172.19.0.1'),(100476,-1,1,'pMt7iVDHnit9LTlRkHC48AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-24 08:25:33','2024-12-24 08:25:33','hadesDbSvcUser@172.19.0.1'),(100247,-1,1,'PnNYnS936iwPHNMIaBaWnQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-25 04:12:12','2024-09-25 04:12:12','hadesDbSvcUser@172.19.0.1'),(100634,-1,1,'pp1b8Zr36j46PA1QdDD4KAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-21 10:20:18','2025-04-21 10:20:18','hadesDbSvcUser@172.19.0.1'),(100459,-1,1,'psolK+j2Lk6YrMKVlFCYoAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 08:42:38','2024-12-23 08:42:38','hadesDbSvcUser@172.19.0.1'),(100661,-1,1,'pTgNaRG0oj7z5w8AAJiCLgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-20 08:06:48','2025-05-20 08:06:48','hadesDbSvcUser@172.19.0.1'),(100559,-1,1,'pVOz5Lt+XahM7m304yHZnQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-18 12:16:20','2025-03-18 12:16:20','hadesDbSvcUser@172.19.0.1'),(100457,-1,1,'PwDqVFxlPrIGiSBgI5foTwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 06:52:38','2024-12-23 06:52:38','hadesDbSvcUser@172.19.0.1'),(100528,-1,1,'PwfmmvS0tA3oFzMgtV5dOQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-06 13:15:57','2025-02-06 13:15:57','hadesDbSvcUser@172.19.0.1'),(100550,-1,1,'pXu5FcAoZQFYUDLp0P83cAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-06 06:26:00','2025-03-06 06:26:00','hadesDbSvcUser@172.19.0.1'),(100249,-1,1,'pyELz5QgnufrmWZ/z5YbJwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-25 08:26:01','2024-09-25 08:26:01','hadesDbSvcUser@172.19.0.1'),(100224,-1,1,'pYfn6/+q4cYIP5Eoe/OWcwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-17 07:40:55','2024-09-17 07:40:55','hadesDbSvcUser@172.19.0.1'),(100502,-1,1,'PymmintbRI2ftbxBvrpisAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-10 12:52:20','2025-01-10 12:52:20','hadesDbSvcUser@172.19.0.1'),(100594,-1,1,'pZoLJPUTj4F/S6Vzx0SvCwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-10 11:43:45','2025-04-10 11:43:45','hadesDbSvcUser@172.19.0.1'),(100572,-1,1,'Q1OvCIZ98a3z/HVudko+jAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-01 12:49:31','2025-04-01 12:49:31','hadesDbSvcUser@172.19.0.1'),(100153,-1,1,'q4xlNy9kqZyIolo7q1z5cwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-21 13:07:20','2024-08-21 13:07:20','hadesDbSvcUser@172.19.0.1'),(100585,-1,1,'Q8DaQK5TMhVHiaXv+srY0QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-09 05:50:33','2025-04-09 05:50:33','hadesDbSvcUser@172.19.0.1'),(100638,-1,1,'Q8VPUbedgavR1aBP+FBITgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-22 14:42:40','2025-04-22 14:42:40','hadesDbSvcUser@172.19.0.1'),(100120,-1,1,'QByKngwVqZoD6pdoXH6NCV1WK18j4VyC7YL6ehihueI=',NULL,1,0,'2024-07-31 05:46:19','2024-07-31 05:46:19','hadesDbSvcUser@172.19.0.1'),(100115,-1,1,'qdJQkxylVtAIqVx6I598oPRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2024-07-30 10:43:27','2024-07-30 10:43:27','hadesDbSvcUser@172.19.0.1'),(100068,-1,1,'qIzGZs677OKpd/8v9JooAKqbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-06-11 05:23:09','2024-06-11 05:23:09','hadesDbSvcUser@172.19.0.1'),(100338,-1,1,'QMOz7lqGVRjdrQdPq3VTkvNKanrdrAPOiCbP0QVxDdtuHax/6udH1fEVWWptrbE8',NULL,1,0,'2024-11-13 05:47:37','2024-11-13 05:47:37','hadesDbSvcUser@172.19.0.1'),(100395,-1,1,'qOhFdRi0Nkvxf04fl0T8VQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-09 09:02:04','2024-12-09 09:02:04','hadesDbSvcUser@172.19.0.1'),(100204,-1,1,'QqT6MJyjEamtqJEYkjPlCgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 07:27:08','2024-09-12 07:27:08','hadesDbSvcUser@172.19.0.1'),(100642,-1,1,'qsouZiTQH5EtsJd3b6C0VQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-26 04:14:39','2025-04-26 04:14:39','hadesDbSvcUser@172.19.0.1'),(100194,-1,1,'QSQnSOziQuW9ZLaCxShuCQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 07:53:24','2024-09-10 07:53:24','hadesDbSvcUser@172.19.0.1'),(100404,-1,1,'qvS33W7Mg+Au58nQudpiRAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-10 13:27:29','2024-12-10 13:27:29','hadesDbSvcUser@172.19.0.1'),(100519,-1,1,'qW2tCU9FebRvayPon1ro+gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-03 14:08:24','2025-02-03 14:08:24','hadesDbSvcUser@172.19.0.1'),(100668,-1,1,'QyJbzbzSp1vh08rKsTlzQAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-22 12:35:24','2025-05-22 12:35:24','hadesDbSvcUser@172.19.0.1'),(100600,-1,1,'qyv/eubw/KPZOhe3ukXJBAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-15 10:09:55','2025-04-15 10:09:55','hadesDbSvcUser@172.19.0.1'),(100479,-1,1,'QZtH9Gao4XdrsSWI+ubbFgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-24 09:51:32','2024-12-24 09:51:32','hadesDbSvcUser@172.19.0.1'),(100569,-1,1,'R+yHsG0MFsoZ5aqLCEEUKgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-27 07:52:12','2025-03-27 07:52:12','hadesDbSvcUser@172.19.0.1'),(100429,-1,1,'R42giyuYGJCFZGHbIWUz2gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 11:29:41','2024-12-18 11:29:41','hadesDbSvcUser@172.19.0.1'),(100067,-1,1,'R4rgSLeAbJ5+4RC8t/M1iKqbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-06-11 05:23:09','2024-06-11 05:23:09','hadesDbSvcUser@172.19.0.1'),(100259,-1,1,'R6fVIzEuAhZp1sdGk3XkjwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-30 06:21:39','2024-09-30 06:21:39','hadesDbSvcUser@172.19.0.1'),(100488,-1,1,'RaNRqGoE1sL8fk5GWhtHegIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-06 11:23:52','2025-01-06 11:23:52','hadesDbSvcUser@172.19.0.1'),(100434,-1,1,'RAOdb+sQ/N66WVLLH6gdDwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 19:25:15','2024-12-18 19:25:15','hadesDbSvcUser@172.19.0.1'),(100119,-1,1,'RCwaL6RAwX/AUgZZNAu05vRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',NULL,1,0,'2024-07-30 13:55:43','2024-07-30 13:55:43','hadesDbSvcUser@172.19.0.1'),(100654,-1,1,'RD7eUVjpWHc3+mIJSHfw1AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-07 13:10:14','2025-05-07 13:10:14','hadesDbSvcUser@172.19.0.1'),(100605,-1,1,'rDp3FlexgmJwIsOGKLzVXQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-15 11:09:54','2025-04-15 11:09:54','hadesDbSvcUser@172.19.0.1'),(100010,-1,1,'rHo43Ql4mrE9Qb+xBEnyvdzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',NULL,1,0,'2024-05-21 10:49:58','2024-05-21 10:49:58','hadesDbSvcUser@172.19.0.1'),(100415,-1,1,'rIveeaan9ve4Fn7TU8O5WgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-16 12:44:15','2024-12-16 12:44:15','hadesDbSvcUser@172.19.0.1'),(100469,-1,1,'RKoaqAm01eljQyYt/62GCgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 12:52:12','2024-12-23 12:52:12','hadesDbSvcUser@172.19.0.1'),(100616,-1,1,'RMbebyvIC7h3SFZWGv9d1gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-17 09:08:00','2025-04-17 09:08:00','hadesDbSvcUser@172.19.0.1'),(100630,-1,1,'rNiAXU/F/5ThLfJ63UHoCgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-21 06:42:39','2025-04-21 06:42:39','hadesDbSvcUser@172.19.0.1'),(100480,-1,1,'rqatoEJpEMpPfmjhNmzI0AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-24 11:07:40','2024-12-24 11:07:40','hadesDbSvcUser@172.19.0.1'),(100396,-1,1,'rRigtcnnx3tcajm6jS30lQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-09 09:12:33','2024-12-09 09:12:33','hadesDbSvcUser@172.19.0.1'),(100417,-1,1,'rrnOcM+Vfd4xIEiywl5yXwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-17 06:33:20','2024-12-17 06:33:20','hadesDbSvcUser@172.19.0.1'),(100439,-1,1,'rv0q6qwPLNcJz+stS82aLQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-19 09:45:31','2024-12-19 09:45:31','hadesDbSvcUser@172.19.0.1'),(100033,-1,1,'RVerzwui/sG5vUicUvOu4/G7eBhK375QlnQo3lVX23Y=',NULL,1,0,'2024-05-24 14:11:11','2024-05-24 14:11:11','hadesDbSvcUser@172.19.0.1'),(100491,-1,1,'rWaUE9px/aX1C6JfuC5ZsAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-09 08:37:15','2025-01-09 08:37:15','hadesDbSvcUser@172.19.0.1'),(100181,-1,1,'RwMrRO11OIwhuXU5PSd/OgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-04 06:13:13','2024-09-04 06:13:13','hadesDbSvcUser@172.19.0.1'),(100025,-1,1,'S0xpa4j1dflIwXKGDFOXaM1nZHP9B5gpT4GiTiY3xKA=',NULL,1,0,'2024-05-22 09:27:06','2024-05-22 09:27:06','hadesDbSvcUser@172.19.0.1'),(100669,-1,1,'s4ENKUAFhz7Gi2W8r+OWKAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-22 12:38:52','2025-05-22 12:38:52','hadesDbSvcUser@172.19.0.1'),(100564,-1,1,'s7oSEjTEY5XMaiDr6NgMkwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-25 13:09:55','2025-03-25 13:09:55','hadesDbSvcUser@172.19.0.1'),(100643,-1,1,'Sa9u3V7yRlUi5eB9pt1rnQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-26 05:43:33','2025-04-26 05:43:33','hadesDbSvcUser@172.19.0.1'),(100579,-1,1,'SBaA0YJhaPfMZkV9XhKDIAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-04 07:58:29','2025-04-04 07:58:29','hadesDbSvcUser@172.19.0.1'),(100161,-1,1,'sd0qwa8U1Rgw9LkbfCLt8gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 08:27:33','2024-08-22 08:27:33','hadesDbSvcUser@172.19.0.1'),(100455,-1,1,'Si7e5hS7aPIc0UiNwTw3SQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 06:29:36','2024-12-23 06:29:36','hadesDbSvcUser@172.19.0.1'),(100146,-1,1,'SlfQ8mu9ZfIE40xLvCsp1AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-21 12:06:24','2024-08-21 12:06:24','hadesDbSvcUser@172.19.0.1'),(100623,-1,1,'smAfwnguCLkUUE2FIRygWwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-18 13:13:01','2025-04-18 13:13:01','hadesDbSvcUser@172.19.0.1'),(100281,-1,1,'sMOB8ZPGmaIFqnzzdf0O8QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-07 13:32:55','2024-10-07 13:32:55','hadesDbSvcUser@172.19.0.1'),(100449,-1,1,'sOyhZuB49UOWZaBlBDRQWAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-20 09:58:59','2024-12-20 09:58:59','hadesDbSvcUser@172.19.0.1'),(100063,-1,1,'Sp9nS+P9R99vFkB2RCNBl+16UonrtERHEPFc8qlj2Bo=',NULL,1,0,'2024-06-11 05:08:56','2024-06-11 05:08:56','hadesDbSvcUser@172.19.0.1'),(100663,-1,1,'spDwPwwLrCHpeXiVJFkP8AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-20 13:18:16','2025-05-20 13:18:16','hadesDbSvcUser@172.19.0.1'),(100635,-1,1,'sPFlhAUWfTfe3gnCcBAWUgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-21 12:42:39','2025-04-21 12:42:39','hadesDbSvcUser@172.19.0.1'),(100269,-1,1,'SS7YxD5QKSkBhicQ6kR2ywIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-01 11:06:42','2024-10-01 11:06:42','hadesDbSvcUser@172.19.0.1'),(100389,-1,1,'sv/n16i169wNX/kMV5HidwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-06 06:54:30','2024-12-06 06:54:30','hadesDbSvcUser@172.19.0.1'),(100652,-1,1,'SvKUIF/zR1NoaO/ujTY8OAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-05 13:28:56','2025-05-05 13:28:56','hadesDbSvcUser@172.19.0.1'),(100288,-1,1,'sWe4Anf0BmV3y9QbxrPD6mKdn6yBOesWb4zH6jZdPDI=',NULL,1,0,'2024-10-14 12:21:14','2024-10-14 12:21:14','hadesDbSvcUser@172.19.0.1'),(100112,-1,1,'sxjmQ1OsSAFnY1p1jDo/5g2hWFFkg7YeFxsHgi1/t6U=',NULL,1,0,'2024-07-25 13:01:40','2024-07-25 13:01:40','hadesDbSvcUser@172.19.0.1'),(100305,-1,1,'sYAJlpT7luoJjMHE9zqlNgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-22 12:20:23','2024-10-22 12:20:23','hadesDbSvcUser@172.19.0.1'),(100659,-1,1,'sYMW0H0ga7EYN659E7vqjAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-15 12:33:56','2025-05-15 12:33:56','hadesDbSvcUser@172.19.0.1'),(100027,-1,1,'SYqZQDhRYXFbc1EP4+xTSuMbl+xX8J3Se/KyCqenqSKWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-05-22 13:18:35','2024-05-22 13:18:35','hadesDbSvcUser@172.19.0.1'),(100343,-1,1,'szi2ZNwkZwyNqIWEHG/QUQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 08:42:36','2024-11-13 08:42:36','hadesDbSvcUser@172.19.0.1'),(100526,-1,1,'t2ouuEFbUbbm9QlmURaj5PNKanrdrAPOiCbP0QVxDdtuHax/6udH1fEVWWptrbE8',NULL,1,0,'2025-02-06 05:16:49','2025-02-06 05:16:49','hadesDbSvcUser@172.19.0.1'),(100143,-1,1,'T3u7eQHbu1WM4c+Xw/LRRTq7AjEwZQ5hJ0zi/y3L7YQ=',NULL,1,0,'2024-08-21 11:29:06','2024-08-21 11:29:06','hadesDbSvcUser@172.19.0.1'),(100607,-1,1,'t5ZmbqO5xxGhRSDboJloWgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-15 13:03:15','2025-04-15 13:03:15','hadesDbSvcUser@172.19.0.1'),(100190,-1,1,'t7zCyz/y4b2o+Az8TupKqAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 06:28:58','2024-09-10 06:28:58','hadesDbSvcUser@172.19.0.1'),(100631,-1,1,'TAzZd4BKZw4PV5JbbkFuJwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-21 07:24:38','2025-04-21 07:24:38','hadesDbSvcUser@172.19.0.1'),(100566,-1,1,'teB8aepHyzVuf2ll86PfKgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-26 13:10:56','2025-03-26 13:10:56','hadesDbSvcUser@172.19.0.1'),(100397,-1,1,'tEbc9BzDN4IMaYDnWkkPCQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-09 12:38:08','2024-12-09 12:38:08','hadesDbSvcUser@172.19.0.1'),(100355,-1,1,'TFXxo2RzCT6ywDxgEVFM2wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-14 10:11:32','2024-11-14 10:11:32','hadesDbSvcUser@172.19.0.1'),(100470,-1,1,'TJCpxiyN0Yjf+Rp4gbZJgwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 14:09:25','2024-12-23 14:09:25','hadesDbSvcUser@172.19.0.1'),(100357,-1,1,'tJeC7uPYotU3XOw0yeemBQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-14 11:48:26','2024-11-14 11:48:26','hadesDbSvcUser@172.19.0.1'),(100541,-1,1,'tlxwEGGTpPrpElT8AcV3wwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-24 11:24:10','2025-02-24 11:24:10','hadesDbSvcUser@172.19.0.1'),(100352,-1,1,'tMohNf4UhsksQNJKKZWgbgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-14 06:26:07','2024-11-14 06:26:07','hadesDbSvcUser@172.19.0.1'),(100056,-1,1,'tQS66trAJkCc/eZuVBu3h3npSdWG9tovPlrW1d0hdVQ=',NULL,1,0,'2024-06-10 06:33:22','2024-06-10 06:33:22','hadesDbSvcUser@172.19.0.1'),(100226,-1,1,'TRibdPVkY4JJx9ty8zStgQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-17 10:37:16','2024-09-17 10:37:16','hadesDbSvcUser@172.19.0.1'),(100639,-1,1,'tSJ3XX7caCE0ze4RBahMyAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-22 15:23:28','2025-04-22 15:23:28','hadesDbSvcUser@172.19.0.1'),(100066,-1,1,'tv3GFbXZKFSynguPX8A3V6qbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-06-11 05:23:08','2024-06-11 05:23:08','hadesDbSvcUser@172.19.0.1'),(100285,-1,1,'tvXOy3SKkFsUXIA1dH29gnwjthlhujXEm2gygJg+ZIc=',NULL,1,0,'2024-10-14 09:59:04','2024-10-14 09:59:04','hadesDbSvcUser@172.19.0.1'),(100336,-1,1,'u67NoSQ+A/k9rw4eGEtcoQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-12 13:11:26','2024-11-12 13:11:26','hadesDbSvcUser@172.19.0.1'),(100246,-1,1,'uaoCgT23his3BJFwOiFXigIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-24 05:52:47','2024-09-24 05:52:47','hadesDbSvcUser@172.19.0.1'),(100053,-1,1,'ud7rtOJAOcxIpGGSBeNT0+Mbl+xX8J3Se/KyCqenqSKWuhYcikV2K2FHg3V5i/Li',NULL,1,0,'2024-06-06 10:01:49','2024-06-06 10:01:49','hadesDbSvcUser@172.19.0.1'),(100503,-1,1,'uEI+93buDXHU6MlaMFQS8QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-13 05:21:06','2025-01-13 05:21:06','hadesDbSvcUser@172.19.0.1'),(100044,-1,1,'UGGBuzYufw65OLEut2wb+gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-05-30 07:09:23','2024-05-30 07:09:23','hadesDbSvcUser@172.19.0.1'),(100240,-1,1,'UGQSMZ/oMIrQXfOw1jtM9QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-20 12:41:00','2024-09-20 12:41:00','hadesDbSvcUser@172.19.0.1'),(100049,-1,1,'uHNhMOZB4murn94b5ZhDkk1ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',NULL,1,0,'2024-06-06 06:01:46','2024-06-06 06:01:46','hadesDbSvcUser@172.19.0.1'),(100263,-1,1,'UixDun1iqqWcikSys8O8lwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-30 12:24:26','2024-09-30 12:24:26','hadesDbSvcUser@172.19.0.1'),(100364,-1,1,'uLjnyqhQXoKLzJ22rPzeeQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-18 13:14:36','2024-11-18 13:14:36','hadesDbSvcUser@172.19.0.1'),(100588,-1,1,'uNpLFR3zZt9fh/mRUKrgEgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-09 07:47:18','2025-04-09 07:47:18','hadesDbSvcUser@172.19.0.1'),(100411,-1,1,'UThlF5Gdcju6j6smhCpHIQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-12 07:05:21','2024-12-12 07:05:21','hadesDbSvcUser@172.19.0.1'),(100586,-1,1,'uTI698mFYMXwFhUP/Mag0QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-09 06:16:02','2025-04-09 06:16:02','hadesDbSvcUser@172.19.0.1'),(100257,-1,1,'UTSguakJZWoEf90mxahE6QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-30 06:11:58','2024-09-30 06:11:58','hadesDbSvcUser@172.19.0.1'),(100621,-1,1,'uumoVcKn0T8LbF6sNrcFiAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-18 08:46:27','2025-04-18 08:46:27','hadesDbSvcUser@172.19.0.1'),(100658,-1,1,'UWhMmlWCYJZlwzeUtDLlNQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-15 09:42:13','2025-05-15 09:42:13','hadesDbSvcUser@172.19.0.1'),(100002,-1,1,'Uy7u/z0nyBatit26sxiq/M1nZHP9B5gpT4GiTiY3xKA=',NULL,1,0,'2024-05-20 09:19:02','2024-05-20 09:19:02','hadesDbSvcUser@172.19.0.1'),(100273,-1,1,'v3okWMtcH7NhvqiTwAZhgQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-03 04:41:05','2024-10-03 04:41:05','hadesDbSvcUser@172.19.0.1'),(100303,-1,1,'v4vjVkwwELZ02QjWNt17ZgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-21 13:39:54','2024-10-21 13:39:54','hadesDbSvcUser@172.19.0.1'),(100253,-1,1,'v5SJcblV0nzfzhoSaZpK1gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-25 11:45:36','2024-09-25 11:45:36','hadesDbSvcUser@172.19.0.1'),(100099,-1,1,'v71V9JqVyxxUi15hBpT9wTq7AjEwZQ5hJ0zi/y3L7YQ=',NULL,1,0,'2024-06-18 08:01:27','2024-06-18 08:01:27','hadesDbSvcUser@172.19.0.1'),(100260,-1,1,'V7y/1yJnzc+cY4GUOqrK4AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-30 11:13:05','2024-09-30 11:13:05','hadesDbSvcUser@172.19.0.1'),(100077,-1,1,'vd12irMi1I+95k/LZtMBJqqbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-06-13 06:03:27','2024-06-13 06:03:27','hadesDbSvcUser@172.19.0.1'),(100597,-1,1,'vEbn6NQ3X1IDqSVWleUtvAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-14 13:38:22','2025-04-14 13:38:22','hadesDbSvcUser@172.19.0.1'),(100611,-1,1,'VePCy4MubbPgwRtUWXNuUgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-16 12:00:43','2025-04-16 12:00:43','hadesDbSvcUser@172.19.0.1'),(100508,-1,1,'VEuQyz1NpqdaJTZrEdxY3AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-20 12:46:50','2025-01-20 12:46:50','hadesDbSvcUser@172.19.0.1'),(100318,-1,1,'VHvwk1oEOpJkIcc40agrvgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-28 13:34:09','2024-10-28 13:34:09','hadesDbSvcUser@172.19.0.1'),(100438,-1,1,'vi4nOTpP1vyMyIh+vz8/8AIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-19 08:28:09','2024-12-19 08:28:09','hadesDbSvcUser@172.19.0.1'),(100647,-1,1,'VkLaFlaD0yhPQgvz1HIsvwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-26 13:14:21','2025-04-26 13:14:21','hadesDbSvcUser@172.19.0.1'),(100521,-1,1,'VljGGGr0Z3nfwcMJkF7YGwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-03 14:17:02','2025-02-03 14:17:02','hadesDbSvcUser@172.19.0.1'),(100026,-1,1,'vTSBLNXzs6N74wxePKCzvE1ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',NULL,1,0,'2024-05-22 09:27:50','2024-05-22 09:27:50','hadesDbSvcUser@172.19.0.1'),(100553,-1,1,'vTsZ9qcsaOUjmMOGaWx4BgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-06 13:14:50','2025-03-06 13:14:50','hadesDbSvcUser@172.19.0.1'),(100428,-1,1,'Vtt1ILfzPWug2IkbD7YH5QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 10:38:02','2024-12-18 10:38:02','hadesDbSvcUser@172.19.0.1'),(100205,-1,1,'Vw2wQsXoCimiOVcgqUjrnwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 07:28:41','2024-09-12 07:28:41','hadesDbSvcUser@172.19.0.1'),(100089,-1,1,'VWTOFk7X9JpDkT749QwaQE5wI/mBxw1VFd8I6QSWkVM=',NULL,1,0,'2024-06-17 05:24:08','2024-06-17 05:24:08','hadesDbSvcUser@172.19.0.1'),(100255,-1,1,'vXtMYoac46RWQq5V5h82CAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-25 12:58:35','2024-09-25 12:58:35','hadesDbSvcUser@172.19.0.1'),(100358,-1,1,'w4txFj5LrfmnzQz6F1o7WgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-14 12:19:06','2024-11-14 12:19:06','hadesDbSvcUser@172.19.0.1'),(100444,-1,1,'w9aR+76aDw2Xt4t34fPUSgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-20 04:29:42','2024-12-20 04:29:42','hadesDbSvcUser@172.19.0.1'),(100501,-1,1,'wATSwvqr/re3/cdX0+AfmwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-10 12:40:11','2025-01-10 12:40:11','hadesDbSvcUser@172.19.0.1'),(100330,-1,1,'wBBNKoOuCoyMJncXCVWmJYzLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',NULL,1,0,'2024-11-08 05:33:24','2024-11-08 05:33:24','hadesDbSvcUser@172.19.0.1'),(100184,-1,1,'wD9m8ITTM2zs9gfOBoFpBuo1sH0hpz92RsgopHt8Nwk=',NULL,1,0,'2024-09-10 05:47:46','2024-09-10 05:47:46','hadesDbSvcUser@172.19.0.1'),(100148,-1,1,'WeE5qC5fh+j82kSHS/FGLgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-21 12:08:24','2024-08-21 12:08:24','hadesDbSvcUser@172.19.0.1'),(100362,-1,1,'WKCOTPFQDakmG4umqpWc9B8wOytfk2HyLe6EmbfQVQ4=',NULL,1,0,'2024-11-18 03:58:10','2024-11-18 03:58:10','hadesDbSvcUser@172.19.0.1'),(100570,-1,1,'wKutxs1QocFqLu+dIH8JEgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-03-27 12:31:54','2025-03-27 12:31:54','hadesDbSvcUser@172.19.0.1'),(100509,-1,1,'wLLSg/KTyron095K/hN4/QIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-30 13:57:18','2025-01-30 13:57:18','hadesDbSvcUser@172.19.0.1'),(100187,-1,1,'WmPvW6yWnhnyosNucAM7swIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 06:16:15','2024-09-10 06:16:15','hadesDbSvcUser@172.19.0.1'),(100348,-1,1,'Wq4bSR8UIHerS2oj52vnrQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 10:30:52','2024-11-13 10:30:52','hadesDbSvcUser@172.19.0.1'),(100493,-1,1,'wRpDXY4Z+9dONxN9BeDqewIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-09 09:42:25','2025-01-09 09:42:25','hadesDbSvcUser@172.19.0.1'),(100381,-1,1,'WSaeE8YX1F3irEeFm7b42gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-02 05:09:15','2024-12-02 05:09:15','hadesDbSvcUser@172.19.0.1'),(100486,-1,1,'wSnPe0VD9ewjWAVN7JbYNgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-06 10:07:52','2025-01-06 10:07:52','hadesDbSvcUser@172.19.0.1'),(100400,-1,1,'wSYohY8ZTaAv06UdPsfrLgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-10 10:30:50','2024-12-10 10:30:50','hadesDbSvcUser@172.19.0.1'),(100217,-1,1,'WTlxfcFxtoSAQ2XXJmr9fQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-16 04:57:36','2024-09-16 04:57:36','hadesDbSvcUser@172.19.0.1'),(100069,-1,1,'wUp4njGmfu7MsM1bF2MwhKqbjXVfoOViBhZJtrcvxYI=',NULL,1,0,'2024-06-11 05:37:09','2024-06-11 05:37:09','hadesDbSvcUser@172.19.0.1'),(100073,-1,1,'wvHCFSKsdyx78Ldp8nkkibCelWXP7fK/9Hc9yMrB3Rw=',NULL,1,0,'2024-06-11 06:20:21','2024-06-11 06:20:21','hadesDbSvcUser@172.19.0.1'),(100206,-1,1,'wyW5oq3/1ZWcFP6G4oBCwAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-12 07:29:20','2024-09-12 07:29:20','hadesDbSvcUser@172.19.0.1'),(100193,-1,1,'wzi0flYZ0gm+iaqpDfBvmAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 06:36:50','2024-09-10 06:36:50','hadesDbSvcUser@172.19.0.1'),(100019,-1,1,'X0lCvv83P8M/Fopx7oqsGoBeoRwu+xe+flGtwkD8FWA=',NULL,1,0,'2024-05-21 13:28:05','2024-05-21 13:28:05','hadesDbSvcUser@172.19.0.1'),(100436,-1,1,'X4QTAl2sl4CVxzQ21zwaIwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-19 04:55:52','2024-12-19 04:55:52','hadesDbSvcUser@172.19.0.1'),(100584,-1,1,'x6WrxuyCGJ+A4M9a3WoY6gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-08 12:00:37','2025-04-08 12:00:37','hadesDbSvcUser@172.19.0.1'),(100180,-1,1,'xBu0m8r7WTA2HG7INoN0oQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-04 06:01:29','2024-09-04 06:01:29','hadesDbSvcUser@172.19.0.1'),(100004,-1,1,'XD1GY+XhWnodM+DmIok4y9zNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',NULL,1,0,'2024-05-21 09:55:07','2024-05-21 09:55:07','hadesDbSvcUser@172.19.0.1'),(100301,-1,1,'xikgrLuZLaZ41M86F5T/lgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-21 12:43:08','2024-10-21 12:43:08','hadesDbSvcUser@172.19.0.1'),(100307,-1,1,'xkbh4+3vEBVFMQ/5MtG7XAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-23 11:28:25','2024-10-23 11:28:25','hadesDbSvcUser@172.19.0.1'),(100100,-1,1,'xLHBqhmNZcZeA6sdSEw4Qjxf5yR0PYqMvPW02TuGmXI=',NULL,1,0,'2024-06-19 06:57:25','2024-06-19 06:57:25','hadesDbSvcUser@172.19.0.1'),(100065,-1,1,'xnEfnjuZkC1W+EDtgMei211WK18j4VyC7YL6ehihueI=',NULL,1,0,'2024-06-11 05:12:58','2024-06-11 05:12:58','hadesDbSvcUser@172.19.0.1'),(100349,-1,1,'XnZBf98bbM7okPBwIU/RPQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 12:48:27','2024-11-13 12:48:27','hadesDbSvcUser@172.19.0.1'),(100530,-1,1,'XoxZh2GT4NiwShvUwKuzDAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-02-12 13:20:34','2025-02-12 13:20:34','hadesDbSvcUser@172.19.0.1'),(100366,-1,1,'xSdxgtLXVc59NPb3LpZLEgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-20 05:28:48','2024-11-20 05:28:48','hadesDbSvcUser@172.19.0.1'),(100657,-1,1,'xsJCD5H8Ya116AOCqRZMNAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-15 08:14:51','2025-05-15 08:14:51','hadesDbSvcUser@172.19.0.1'),(100237,-1,1,'xVis7yByOmNRsGLUL8QREwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-18 11:11:50','2024-09-18 11:11:50','hadesDbSvcUser@172.19.0.1'),(100425,-1,1,'xvWLTNc0ixdeyG8cGli4PwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-18 07:38:43','2024-12-18 07:38:43','hadesDbSvcUser@172.19.0.1'),(100356,-1,1,'xXWEbC3gpmLhN39CpC7odAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-14 10:30:34','2024-11-14 10:30:34','hadesDbSvcUser@172.19.0.1'),(100655,-1,1,'Y/Ko69TerlE/O/sGtPvWqQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-05-07 13:16:09','2025-05-07 13:16:09','hadesDbSvcUser@172.19.0.1'),(100062,-1,1,'Yet9kV66f8XyOXGs4nk7T3npSdWG9tovPlrW1d0hdVQ=',NULL,1,0,'2024-06-11 05:08:37','2024-06-11 05:08:37','hadesDbSvcUser@172.19.0.1'),(100484,-1,1,'YJz4NnNDsYqZ1qY89R2MTOOKNcQrSCiSVvKCtjwepJ8=',NULL,1,0,'2025-01-06 05:37:17','2025-01-06 05:37:17','hadesDbSvcUser@172.19.0.1'),(100410,-1,1,'YkxM6vrNJGktzp4txXe6UQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-12 06:51:53','2024-12-12 06:51:53','hadesDbSvcUser@172.19.0.1'),(100254,-1,1,'YOj2Z7Xic+VQFchdGKtYIgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-25 11:52:07','2024-09-25 11:52:07','hadesDbSvcUser@172.19.0.1'),(100649,-1,1,'yoqaZCmuMieneC+mlAeL3wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-27 06:35:27','2025-04-27 06:35:27','hadesDbSvcUser@172.19.0.1'),(100245,-1,1,'yrrtFxUKNz0bVUGezpMIiQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-24 05:22:22','2024-09-24 05:22:22','hadesDbSvcUser@172.19.0.1'),(100195,-1,1,'YsdUH+9B9iSQL5TR5/Cn9wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-10 10:17:32','2024-09-10 10:17:32','hadesDbSvcUser@172.19.0.1'),(100167,-1,1,'yU5adtLfPesj4HvAEeTEoAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 12:41:49','2024-08-22 12:41:49','hadesDbSvcUser@172.19.0.1'),(100598,-1,1,'YWCYZxhrvHuTGv3KGzcJgAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-14 13:56:23','2025-04-14 13:56:23','hadesDbSvcUser@172.19.0.1'),(100011,-1,1,'YXvkh+3ePKQdx2iwCQ/WMdP3kl78wnxTj3gGpqaMfBY=',NULL,1,0,'2024-05-21 10:51:52','2024-05-21 10:51:52','hadesDbSvcUser@172.19.0.1'),(100306,-1,1,'YYtLnVLCx+D6F354FFWCbQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-23 11:28:20','2024-10-23 11:28:20','hadesDbSvcUser@172.19.0.1'),(100292,-1,1,'yZ3+9zvjvY1fxchOA17/YAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-17 05:56:05','2024-10-17 05:56:05','hadesDbSvcUser@172.19.0.1'),(100122,-1,1,'Z/UaGRja3IbvAG7T6EaokN1HSDlj6eQJgxPv2kN3ZF8=',NULL,1,0,'2024-07-31 05:50:00','2024-07-31 05:50:00','hadesDbSvcUser@172.19.0.1'),(100166,-1,1,'Z4+vmoFjuVjS4Kwqef7g1gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 10:42:20','2024-08-22 10:42:20','hadesDbSvcUser@172.19.0.1'),(100072,-1,1,'z6gK2E+8g/eu2pG+YPyH+PPHHHVMJfDz8t+XF9JzIEo=',NULL,1,0,'2024-06-11 05:56:22','2024-06-11 05:56:22','hadesDbSvcUser@172.19.0.1'),(100506,-1,1,'z6Mjjii1YHGhePHtt0N/hQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-15 13:21:12','2025-01-15 13:21:12','hadesDbSvcUser@172.19.0.1'),(100507,-1,1,'Z7qVKXXT2Td+JArv6eHqQwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-20 12:13:39','2025-01-20 12:13:39','hadesDbSvcUser@172.19.0.1'),(100174,-1,1,'z9TJHTHb2jEXwMRcdLa77gIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-08-22 13:22:57','2024-08-22 13:22:57','hadesDbSvcUser@172.19.0.1'),(100225,-1,1,'zAcVNSm9Ntywkh/wOFquCQIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-17 08:20:16','2024-09-17 08:20:16','hadesDbSvcUser@172.19.0.1'),(100350,-1,1,'ZAoRFRcYATuPUp08B/7NywIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-11-13 13:01:02','2024-11-13 13:01:02','hadesDbSvcUser@172.19.0.1'),(100456,-1,1,'ZbTGSNrGJ1TxOu2/9ZBCtgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-23 06:31:24','2024-12-23 06:31:24','hadesDbSvcUser@172.19.0.1'),(100499,-1,1,'zgOn3pp63/qKTPQp4OZ3VAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-09 13:01:54','2025-01-09 13:01:54','hadesDbSvcUser@172.19.0.1'),(100058,-1,1,'ZjQTNuV28WwNsLNbxYb3gu16UonrtERHEPFc8qlj2Bo=',NULL,1,0,'2024-06-11 05:07:10','2024-06-11 05:07:10','hadesDbSvcUser@172.19.0.1'),(100221,-1,1,'ZMGFONKsnwoYzMTCFKYIAgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-09-16 08:00:41','2024-09-16 08:00:41','hadesDbSvcUser@172.19.0.1'),(100312,-1,1,'zownrX9EfYc1afL1cjn5zTNzrr4mtk5NLAYy0reDm/uwnpVlz+3yv/R3PcjKwd0c',NULL,1,0,'2024-10-28 05:37:24','2024-10-28 05:37:24','hadesDbSvcUser@172.19.0.1'),(100487,-1,1,'ZOxvm+vwj/UCsKNFjCR0AwIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-01-06 11:18:48','2025-01-06 11:18:48','hadesDbSvcUser@172.19.0.1'),(100443,-1,1,'Zoz26D0cpbvwvf78XjdXlAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-19 13:55:57','2024-12-19 13:55:57','hadesDbSvcUser@172.19.0.1'),(100391,-1,1,'zQj8IvnLxq6ZOlz4hJE5WgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-06 12:15:28','2024-12-06 12:15:28','hadesDbSvcUser@172.19.0.1'),(100373,-1,1,'ZRa6HR85rotIsOKdFBelafG7eBhK375QlnQo3lVX23Y=',NULL,1,0,'2024-11-25 04:55:57','2024-11-25 04:55:57','hadesDbSvcUser@172.19.0.1'),(100316,-1,1,'ZwlobOYEyoNUuv3ZtVWhYAIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-10-28 12:59:58','2024-10-28 12:59:58','hadesDbSvcUser@172.19.0.1'),(100604,-1,1,'zybQv3izTAe6lMRzndAlWgIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2025-04-15 11:04:37','2025-04-15 11:04:37','hadesDbSvcUser@172.19.0.1'),(100382,-1,1,'ZzoViCAy9FhyFcV4RbM07wIvzMLXEnhT1YuQHiLhuC8=',NULL,1,0,'2024-12-02 12:32:15','2024-12-02 12:32:15','hadesDbSvcUser@172.19.0.1'); +/*!40000 ALTER TABLE `auth_provider_metadata_v2` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_auth_provider_metadata_v2_insert_trigger BEFORE INSERT ON hades_db.auth_provider_metadata_v2 +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_auth_provider_metadata_v2_update_trigger BEFORE UPDATE ON hades_db.auth_provider_metadata_v2 +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `auth_provider_types` +-- + +DROP TABLE IF EXISTS `auth_provider_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `auth_provider_types` ( + `id` int(3) NOT NULL AUTO_INCREMENT, + `name` char(20) COLLATE utf8mb4_unicode_ci NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` char(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_provider_types` +-- + +LOCK TABLES `auth_provider_types` WRITE; +/*!40000 ALTER TABLE `auth_provider_types` DISABLE KEYS */; +INSERT INTO `auth_provider_types` VALUES (1,'EMAIL',0,'2024-05-20 08:57:19','2024-05-20 08:57:19','root@172.19.0.1'),(2,'MOBILE',0,'2024-05-20 08:57:19','2024-05-20 08:57:19','root@172.19.0.1'); +/*!40000 ALTER TABLE `auth_provider_types` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_auth_provider_types_insert_trigger BEFORE INSERT ON hades_db.auth_provider_types +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_auth_provider_types_update_trigger BEFORE UPDATE ON hades_db.auth_provider_types +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `clients` +-- + +DROP TABLE IF EXISTS `clients`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `clients` ( + `client_id` int(11) NOT NULL, + `name` char(250) NOT NULL, + `alias` varchar(250) NOT NULL, + `agency_id` int(11) NOT NULL, + `store_type` varchar(50) NOT NULL DEFAULT 'custom', + `merchant_type` varchar(50) NOT NULL DEFAULT 'client', + `url` mediumtext NOT NULL, + `status_type_id` int(11) NOT NULL, + `contact_number` varchar(50) DEFAULT NULL, + `feed_source` varchar(20) DEFAULT NULL, + `installation_type` varchar(10) DEFAULT NULL, + `currency_code` char(5) DEFAULT NULL, + `timezone` varchar(50) DEFAULT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`client_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `clients` +-- + +LOCK TABLES `clients` WRITE; +/*!40000 ALTER TABLE `clients` DISABLE KEYS */; +/*!40000 ALTER TABLE `clients` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_clients_insert_trigger BEFORE INSERT ON hades_db.clients +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_clients_update_trigger BEFORE UPDATE ON hades_db.clients +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `clients_id_generator` +-- + +DROP TABLE IF EXISTS `clients_id_generator`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `clients_id_generator` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `clients_id_generator` +-- + +LOCK TABLES `clients_id_generator` WRITE; +/*!40000 ALTER TABLE `clients_id_generator` DISABLE KEYS */; +INSERT INTO `clients_id_generator` VALUES (1,'1_Tving Test Admin',NULL,NULL,NULL),(2,'1_JooyoungAdAccount',NULL,NULL,NULL),(3,'1_Daehueng',NULL,NULL,NULL),(4,'1_퓨쳐스트림 네트워크 JooyoungAdAccount-2',NULL,NULL,NULL),(5,'1_에코마케팅 Hanna',NULL,NULL,NULL),(6,'tving-staging-seller test_do_not_use',NULL,NULL,NULL),(7,'tving-staging-seller WPSjSway6zxfVZWR',NULL,NULL,NULL),(8,'tving-staging-seller F3ic8Ba9cma45x2J',NULL,NULL,NULL),(9,'tving-staging-seller Vxb3oZyytPEwcjkZ',NULL,NULL,NULL),(10,'tving-staging-seller YtOiSjTEpsJWfqqM',NULL,NULL,NULL),(11,'tving-staging-seller test_hm',NULL,NULL,NULL),(12,'tving-staging-seller TEST_SELLER_ID',NULL,NULL,NULL),(13,'2_Tving QA Admin',NULL,NULL,NULL),(14,'tving-qa-seller WPSjSway6zxfVZWR',NULL,NULL,NULL),(15,'tving-qa-seller TEST_SELLER_ID',NULL,NULL,NULL),(16,'tving-qa-seller NshES5G5u00Zl1xn',NULL,NULL,NULL),(17,'tving-qa-seller doGNTwiW2MgUKlkz',NULL,NULL,NULL),(18,'tving-qa-seller MxTCFpKSK3Xoa6Ko',NULL,NULL,NULL),(19,'tving-qa-seller qOjHBIXIOWpvKkgq',NULL,NULL,NULL),(20,'tving-qa-seller zw458QHAqFkQDV4f',NULL,NULL,NULL),(21,'tving-qa-seller gIDPPSEomGlEaZyy',NULL,NULL,NULL),(22,'tving-qa-seller neuXz1JGmBV2EU0M',NULL,NULL,NULL),(23,'tving-qa-seller IJ3E5byMo8XmiQO8',NULL,NULL,NULL),(24,'tving-qa-seller C8PyyFevOyDK03bS',NULL,NULL,NULL),(25,'tving-qa-seller a4jim0PxlEeizrJN',NULL,NULL,NULL),(26,'tving-qa-seller lPNjSDdMJfDOITKg',NULL,NULL,NULL),(27,'tving-qa-seller hyTMsxI0irU0cAdT',NULL,NULL,NULL),(28,'tving-staging-seller Vxb3oZyytPEwcjkX',NULL,NULL,NULL),(29,'tving-staging-seller cbT7wcJjR6e6Ide5',NULL,NULL,NULL),(30,'tving-staging-seller 35496053',NULL,NULL,NULL),(31,'tving-staging-seller TEST_SELLER_ID2',NULL,NULL,NULL),(32,'tving-staging-seller TEST_SELLER_ID3',NULL,NULL,NULL),(33,'tving-staging-seller TEST_SELLER_ID4',NULL,NULL,NULL),(34,'tving-staging-seller TEST_SELLER_ID5',NULL,NULL,NULL),(35,'tving-staging-seller TEST_SELLER_ID6',NULL,NULL,NULL),(36,'tving-staging-seller TEST_SELLER_ID7',NULL,NULL,NULL),(37,'tving-staging-seller TEST_SELLER_ID8',NULL,NULL,NULL),(38,'tving-staging-seller TEST_SELLER_ID9',NULL,NULL,NULL),(39,'tving-staging-seller TEST_SELLER_ID10',NULL,NULL,NULL),(40,'tving-staging-seller TEST_SELLER_ID11',NULL,NULL,NULL),(41,'tving-staging-seller API_TEST1',NULL,NULL,NULL),(42,'tving-staging-seller API_TEST2',NULL,NULL,NULL),(43,'tving-staging-seller API_TEST3',NULL,NULL,NULL),(44,'tving-staging-seller API_TEST4',NULL,NULL,NULL),(45,'tving-staging-seller API_TEST5',NULL,NULL,NULL),(46,'tving-staging-seller Sh2UqYwhmyTKEAQk',NULL,NULL,NULL),(47,'tving-staging-seller dafs_dagda',NULL,NULL,NULL),(48,'tving-staging-seller igaiagicd2',NULL,NULL,NULL),(49,'tving-staging-seller igaiagicd',NULL,NULL,NULL),(50,'tving-staging-seller igaiagicd21',NULL,NULL,NULL),(51,'tving-staging-seller test_seller_korean',NULL,NULL,NULL),(52,'tving-staging-seller TEST_SELLER_DOWN',NULL,NULL,NULL); +/*!40000 ALTER TABLE `clients_id_generator` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `email_id_metadata` +-- + +DROP TABLE IF EXISTS `email_id_metadata`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `email_id_metadata` ( + `user_id` int(11) NOT NULL, + `email` char(250) NOT NULL, + `activation_code` char(255) DEFAULT NULL, + `is_verified` tinyint(1) NOT NULL DEFAULT '0', + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` char(80) DEFAULT NULL, + PRIMARY KEY (`email`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `email_id_metadata` +-- + +LOCK TABLES `email_id_metadata` WRITE; +/*!40000 ALTER TABLE `email_id_metadata` DISABLE KEYS */; +/*!40000 ALTER TABLE `email_id_metadata` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db.email_id_metadata_insert_trigger BEFORE INSERT ON hades_db.email_id_metadata +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db.email_id_metadata_update_trigger BEFORE UPDATE ON hades_db.email_id_metadata +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `encrypted_app_contexts` +-- + +DROP TABLE IF EXISTS `encrypted_app_contexts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `encrypted_app_contexts` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `app_id` int(11) NOT NULL, + `app_key` varchar(100) NOT NULL, + `context` text, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `app_id` (`app_id`,`app_key`) +) ENGINE=InnoDB AUTO_INCREMENT=175 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `encrypted_app_contexts` +-- + +LOCK TABLES `encrypted_app_contexts` WRITE; +/*!40000 ALTER TABLE `encrypted_app_contexts` DISABLE KEYS */; +INSERT INTO `encrypted_app_contexts` VALUES (1,5,'hadesDbCreds_staging2','idkqL/jMUfaFeYZUa/wZZzun6NyVcp/xFy9LYiXU5oSLOoaSN8qOGa9/eM/cyJvZJLIudKn6y8ZYLQIcaGoGnCMuYquW2kR6zp+iCjuOR14Efvvx8rpaVNHrGBfLZsJka7O+p6g7xh6i46CLNQI3zyJAIxXY1krzi3j6+MNNnr0=','2024-05-20 11:57:10','2024-05-20 11:57:10','hadesDbSvcUser@172.19.0.1',0),(2,6,'onBoardingServiceV2_SECRET_KEY','B5vjys5dnVbmi7vIF0IatWS+OOFUrECvRkvRe1xQ64g=','2024-05-20 11:59:58','2024-05-20 11:59:58','hadesDbSvcUser@172.19.0.1',0),(3,6,'OS_MONGO_CREDENTIALS','LuBFou0SmhucN7xUrEBXTCaazYeeeHYMw+cf/72K+Y6SvbKhNAU2dTOJ1XWNsm1C8ghI/FksoR4p+19HjkCs8r1WSycXDcs2MI94KPxf/gh/Va1kXHkDz6asLwEb38KZfbw0/LpS7+q2ZtUu/jTyDuTM4lL0pL9ti2BhKaglHN0G3GGdXNN+Ah2XJYp5YlGQ','2024-05-20 11:59:58','2024-05-20 12:03:55','hadesDbSvcUser@172.19.0.1',0),(4,7,'osBulkActionsService_SECRET_KEY','Su7aF8BhsFOZrxMa5niRcBCNWkYU+XLWn5F1WgkoN3I=','2024-05-20 12:18:35','2024-05-20 12:18:35','hadesDbSvcUser@172.19.0.1',0),(5,7,'OS_TEST_MONGO_CREDENTIALS_BULK_ACTION_APP','LuBFou0SmhucN7xUrEBXTCaazYeeeHYMw+cf/72K+Y6SvbKhNAU2dTOJ1XWNsm1C8ghI/FksoR4p+19HjkCs8r1WSycXDcs2MI94KPxf/gh/Va1kXHkDz6asLwEb38KZfbw0/LpS7+q2ZtUu/jTyDlwf0MHDoLRQvdeT+HVmHxA2yWdgdDvEhuAJL9N+epRi','2024-05-20 12:18:38','2024-05-20 12:18:38','hadesDbSvcUser@172.19.0.1',0),(6,8,'changeHistoryService_SECRET_KEY','FBmJVPftIAjmNv4KLEvXxMQ4bBIuwqhjmM1Lh44IyDc=','2024-05-20 12:32:22','2024-05-20 12:32:22','hadesDbSvcUser@172.19.0.1',0),(7,8,'OS_MONGO_CREDENTIALS','LuBFou0SmhucN7xUrEBXTCaazYeeeHYMw+cf/72K+Y6SvbKhNAU2dTOJ1XWNsm1C8ghI/FksoR4p+19HjkCs8r1WSycXDcs2MI94KPxf/gh/Va1kXHkDz6asLwEb38KZfbw0/LpS7+q2ZtUu/jTyDsiBSjNWFcVtsCttzKi2tQVhoanTcx1jIyimWmho2fEv','2024-05-20 12:32:23','2024-05-20 12:32:23','hadesDbSvcUser@172.19.0.1',0),(8,9,'changeLogEventConsumer_SECRET_KEY','o0tDhP/dnlyfdGdzHv7dUv/2afYGVlz/nmL9G4qzqIU=','2024-05-20 13:03:09','2024-05-20 13:03:09','hadesDbSvcUser@172.19.0.1',0),(9,10,'notificationsServiceV2Test_SECRET_KEY','4SdhiVPV57k6iJ0LTn78ycz31YkhcUTlLVSmfZU6feU=','2024-05-20 13:26:43','2024-05-20 13:26:43','hadesDbSvcUser@172.19.0.1',0),(10,10,'mongo_config','35a6QMjZ9If5xRV/GQ4HrEPgqrdWbnaNArl80nix/SbxULheXuoq5bWwFdcXRACN+HszwSnhbK0cZOfZLRN4rGm/LqT2B1uh6D+pRHCfcjvqTJVXMQ1LlGwQBd5UQ2ea70x0/rMzqMaMmlJoVOZ9B8q9Ow6tbREsKN2PKvJBa3DRp2ZWGZOD9pW4dzmNeAIRT6gKkp76D9uVlKYabB+CoEzM2Egr89tjHpSoSVXB8DU=','2024-05-20 13:26:45','2024-05-20 13:29:21','hadesDbSvcUser@172.19.0.1',0),(11,10,'mongo_credentials','dbRrASyt20cw8QesqJZM6QWVPJ8HeCGtJhAZA7NUcCHeA/NYbRVhh7v0P7Kx/vM/XGFjLmjQkH5TNkEe+pjyjvzr+kP/m9u5VQItyxkZUFgmtWP2WNcSw3Tq/sWGO3Cmlo9R48HRP8V0dzVwcsKHLUf7AulmYkdBetmQ3mWRHwdOZ6RtvkQEeShAnXRW7Ix6','2024-05-20 13:26:48','2024-05-20 13:26:48','hadesDbSvcUser@172.19.0.1',0),(12,10,'OS_CLEVERTAP_BASIC_AUTH','T2ulqwheMA4UzRb+qkcmqi0VhKPFKb4Hqn+gtHedFJr1M3/tuE2o1dt9HexClv3ub6Wg4tZlXUSFAVFriqpbd8z1Jcktp9cZ0Tc8Pe/03ms=','2024-05-20 13:26:51','2024-05-20 13:26:51','hadesDbSvcUser@172.19.0.1',0),(13,10,'s3_credentials','XvLZ5ggUb3gdB1c/nWsborxs8D74BUbgYlPBbY62/oBCY0aj4gkzpgPHI8CZq90fMpDWuiIbXy/OO3WRBF9eWsfbtPzAxOXWWOCxdy8zNpiU0lin0YEM/yUGaYeSOUsK655x835Rdw86tgt/HlfO8A==','2024-05-20 13:26:54','2024-06-05 14:12:25','hadesDbSvcUser@172.19.0.1',0),(14,11,'HADES_SECRET_KEY','qwZPmEfZfm9S3cCzLzvTJMwsIRzJupvWUON5EXdvBKM=','2024-05-20 13:45:33','2024-05-20 13:45:33','hadesDbSvcUser@172.19.0.1',0),(15,11,'onlinesales_recaptcha_private_key','lCDiu/kC/ncRUuJV+O53Uo2yqSiVgQsqOGlrqaabQxvcRLNdi1SWrauK1vwtmjPq','2024-05-20 13:45:37','2024-05-20 13:45:37','hadesDbSvcUser@172.19.0.1',0),(16,9,'os_gcp_prod_kafka_broker_creds','1GkTwDOR+AWX9ukJsPXHPMO8LzN14HIy4QRug3bJbz/wUyJKqmbd3n2qOiC4d/q8ULeFvirz6LSZP3cvUQoZqCqqx8Tl3Jtp59CQlXGUGQhZnJw5txMsqZgabtMuymRA','2024-05-21 03:48:45','2024-05-21 03:48:45','hadesDbSvcUser@172.19.0.1',0),(17,12,'osPackageSvc_SECRET_KEY','KowH33zfKDNwRQFI1Rb5/aBQocRKCt1Koy+BRFOv33k=','2024-05-21 05:42:09','2024-05-21 05:42:09','hadesDbSvcUser@172.19.0.1',0),(18,12,'OS_MYSQL_CREDENTIALS','Ia6VK3fqCgayAFLLGvu6sOf+z1hTwTXsk9Pdrp6UpmB3QDVNvXljBAFSLoOfcBG/C7lMYmQBVjGbX2TwoSNFDe5egYcJxv47wqpKdSTICyxMq/tS5gCD7svSTrx36QScwgze6LfWKBZqpZsX05090b8GyssUOmjsAe8R09pXpuPlRon/d6ZU/7DiR0vBg3ryT7abIolSJ+Ny6FepOYe0N8yY2FBt2ydx9S73/oh/bxjmFSMJ77U/8WO3+4+E6FR1nFqLhyt2j22J+IQpSM7OO27NQN8jLFbiyMY9/cotRR0qilrFWPcadMjJeVao8iD+nyQZkz2Do4JUCMhuSpPdGrSXvkr9+4LWZtuKxQ/j3xqDNhepbkkSedpCkJ6hWv8+6z/zQes4HFaS7ViyCVAZQE/mSSkTtSDc6s2xtFTBIwEU+JNKjdV1HPeLEnvhrVZ6','2024-05-21 05:42:10','2024-05-21 05:42:10','hadesDbSvcUser@172.19.0.1',0),(19,12,'OS_REDIS_CREDENTIALS','JaDcxpjqi4CGEsipIASWc/3NrWGrfPpN0CuAPoeJUR2+YNxazW3mrrTNqyq90ZlaCu7Ikc/ds73SvJc1K3eP7tbScU6Q47gmzo6oQ3xeOBNdVitfI+Fcgu2C+noYobni','2024-05-21 05:42:11','2024-05-21 05:42:11','hadesDbSvcUser@172.19.0.1',0),(20,13,'shopsUIServices_SECRET_KEY','euRAg6mKu8me1P+Kh3b5tRmeFv8Q8M7RQXQLU8AFSB8=','2024-05-21 06:07:27','2024-05-21 06:07:27','hadesDbSvcUser@172.19.0.1',0),(21,14,'kamService_SECRET_KEY','84EycraaP0zuxxS3C7PTgXwwbBXjxJ7ScxBds+URTKo=','2024-05-21 06:26:18','2024-05-21 06:26:18','hadesDbSvcUser@172.19.0.1',0),(22,14,'OS_ADS_MONGO_CREDENTIALS','LuBFou0SmhucN7xUrEBXTCaazYeeeHYMw+cf/72K+Y6SvbKhNAU2dTOJ1XWNsm1C8ghI/FksoR4p+19HjkCs8r1WSycXDcs2MI94KPxf/gh/Va1kXHkDz6asLwEb38KZZRZ9TSTbveydUN4cJla76yd8IFrrU0V1phePvOrLq78=','2024-05-21 06:26:18','2024-05-21 06:26:18','hadesDbSvcUser@172.19.0.1',0),(23,14,'IFTTT_LOCAL_GCP_BQ_CREDENTIALS','ghaTKLCEHMTQ8+YM8kILG2n983+rq7k4edeKaI/dDh0USeOUZKxtRByXvI3P7fxWSNVLbEp/+gy4PhHVo+n9DoVFdX2ei9WjPLdHNPL4HrGGU4wgINRA/K4zET4ph0FUtpTQBwBcbGnIsxvxVS0mECWS0u6XpTxDXHA9BFszR6w/lX2T0V431SH7VBjhuZj1ouxq/m9d/TNZXNRVK2QyEq1EQA7ZFPDGvkcxRsgnq3KZRTEljwMnkiGYV/X0TkBvVdJls1X11hCS56NXmVfmCyF1esl7yZKBXnVWyI9If3JrO+i1my4CDocf113yydwzBrUAhPhSOtQtv10JeIAzyXagv48rj5txzqZqQyKgZFikYz+SuvfrVpgL+T11SzerhaW7c39ao0/IO2wYJO1Q55oID9piuohKn+Tzr6b9+u9iPBoXIJaJh8p/gdTqbw5F/+TB+LtsYvcQDFWW08gm/sc0cyvt+zyne3/Ro5Wgr6XfhzU26MVDKZZHaRt2Q3SAw1FFLqO9QVI9lzQ0hu3omnkBK8RRMfKwmF8RS+4g6qOVxwI5snrhDUIjk8x7oA8oHxzEgYJ7mlR2QIIpZJ62LzjyZErvyItysfRg+f3J2OER03xJRAcqaYimOLx3y9n/VZy5hgjVsqOA5oLu1R6aK6SEdy74qLLBDCf6TxvXFHE0e/nktuMBndm4+6DI6iZfHpAnRneEGfNN8rVv+sDPPXqqKFWgQuRcPPa5DJGZo45ZnJw5txMsqZgabtMuymRA','2024-05-21 06:26:18','2024-05-21 06:26:18','hadesDbSvcUser@172.19.0.1',0),(24,14,'OS_REDIS_APP_KEY_KAM','JaDcxpjqi4CGEsipIASWc/3NrWGrfPpN0CuAPoeJUR2+YNxazW3mrrTNqyq90ZlaT6WAgZeHqma1L+6/Gx+UR9bScU6Q47gmzo6oQ3xeOBNdVitfI+Fcgu2C+noYobni','2024-05-21 06:26:18','2024-05-21 06:26:18','hadesDbSvcUser@172.19.0.1',0),(25,12,'TVING_MOLOCO_STAG_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZJyJcDVdiNSzhoEZ8O0fhixUgjEy30xDLnjqvTbKgWkJC6ZCqiMsl2qe5GrIrUF8xa8rfe1aljfuvLxzuRxTadIb72Mk8w6iLcaiVPUsfAwcjBatX29bzh5VWObhYZUCdSO8uVMduncLW2sFOpDRFkFcV9dJYhsNRhu4XMq90ytoKb/p+e++FRGy3AsJgZJoMKVNFddbGSTlMPH6GRq4hbevNeixvVbnfecJpddRZRF9PFEonKElVEYdC74xXUURN','2024-05-21 06:47:04','2024-06-21 07:20:21','hadesDbSvcUser@172.19.0.1',0),(26,1,'TVING_STAG_MLC_TOKEN','CvAZZcUQKsKPG/aUd2tN0+rJD3i563BwbqsIQ78kxcI8pCYNhbAJmZRmAQJZ/PuPJdN9K/sLN9sg9AraJqRi++xKgRhoPlQj8L4P59T++w4yI9qzAd8xuVJrH4B7yIFlEmOx+LzaCZ6s2c2RB8JLZufRWbz7V+tau50RWCDr+1jf0b40+iC0YP9+2gA0831AZBl6JKRqzo9VjHAyNEh53TjFFu9Vnzf4g5y2SDiQqydJArwzPmw22S1oSlNVVFidO/kX0T5nYpdVULK0IXGZi6Bugfhf+GMYU6bdS/cpwBEsOjVrlQwQ7n1cIQt7GILBBiiiFPezNUixBlc6J46zfdp72MiUaEZ7MswEbiztbl4/c8uMcM547uzPQ7PrNqahsdDXFKx+gZQ0ciYyDzgPNY4tnNbuy/GwvEXd8n/RVI8tbORilFH076Sj5W9wIXFJBt+DTaVDwMycbTEaSaKQu7qXFMofO6T7Bixcwnpq9bzTjTfpNqnZnc6HuajPzIGgByGjSg9RGHOlqZf1TFw1yky520dHgj82UciLNx1qq4gLbR556MiblkKUBW+5F0KlmlnbSXPGgNu5qrLzTOBoXW3wrH+guA+C62stkaN5OwzF/rPuv/jjKDl92kd3rXtyCMfr/VFu0Rq5f7K8BGey3CrjMrco6KXVITmDEnczHu76BplRvhbqOpDd2oMwERvLreJDAfPELyYVrAz/Tp31UA==','2024-05-21 06:48:49','2024-05-21 06:48:49','hadesDbSvcUser@172.19.0.1',0),(27,12,'TVING_STAG_MLC_TOKEN','CvAZZcUQKsKPG/aUd2tN0+rJD3i563BwbqsIQ78kxcI8pCYNhbAJmZRmAQJZ/PuPJdN9K/sLN9sg9AraJqRi++xKgRhoPlQj8L4P59T++w6F7SlRa7BtvyDnEOOc1VtwyhHHkzmf3uSFytCrj1jSNmS4bruTDfQLC3xW/GRRLhff0b40+iC0YP9+2gA0831Ac6ZbOHFBVduVaS0Ci93NCuqicjKEb8M3qvAf1B7g1WosnURU65CiYxfJfdYNY4VyO/kX0T5nYpdVULK0IXGZi2+VGLDg/ydhGO2CN/4x9Deh1jpBgcyPyqI4+afPN2NlexSrjJKOD+UiraUSL2JxxiY1Tz4uleYNbhf/A/XYKuOC6dVnt9XPtAvIwqIL2lopjd9QAcj4LdnTrG7DGcx6rWdIkOl8fiP9OkAr1N9FfXK0dBBiXeT3jSwHX2cUXx5V5mS8/TREL44ZZ9BmwDLjkh0nh4fXOdyvKFE+rrtVkPydnH98Tl4cx+3L+HYbZvcFXC/eZZBQSg/B+KGlOEijer98y9lr/09jKNyBxzlumZoa6IYiwIRRP80qhe5t0pWoQT493Jkjn6GbBtblTqz0sxPGUEpfbhzcf9e8Ys7gjnvSIhpch96Ut1I/IKGM2obmQBpotHrdB3RHAEODAKNAxTJwDIOJB7IugV2WUxtCE06Dxlu2I3QXLAVdC9uTg8DMiXZB3xXf3cGqh0GaJmESTiP9v8XwUXS6maFrNCi3Marvkjq3Fqu9cIRBgzsO+Fy4zrSrlcGeRK+lZcma/gLn7bcrSJD9ANYs9www/xoRuUH6H1GI2YeramFWDuk1y8Vn9K/FAVh+GnzApdWgmMeQ6Q==','2024-05-21 06:49:31','2025-05-22 13:01:32','hadesDbSvcUser@172.19.0.1',0),(28,14,'MYSQL_OS_PACKAGE_DB_STAGING_KEY','Ia6VK3fqCgayAFLLGvu6sMZjlOb1WIUBrI5/8BkZk2Q1gePaTFhWnyawCt2fLDp2VJmWjiAsKTpp+9JvlqXZwwuhKcsUD8MiRCYZqcflGkS/975PtbWhq64sdRNkr9OM4UG57HOu3IOriUb/5qCcpevP7FS0fl7VHk8qOnXBSqg1Ww5gS5CaDRFR7gaftfcc3K9Scm0HpATzNnTXm8IxQWZNBfN0Xvc1NsJaNInN545B+yKsn0I/v7nc5Uumg3KIVyoVpeBktYNK5+Gm5jJwZ0PjfXdCBC4uYrA5DJlqaOiPxqWZvHxrcqMtAIKJ5W5/41G7J67Y1lxQU6p90VGHGw==','2024-05-21 07:48:58','2024-05-21 07:48:58','hadesDbSvcUser@172.19.0.1',0),(29,14,'MYSQL_HADES_SLAVE_TEST_KEY','kzpDs69/ocwGrKnbkHib4dmo8dQjTb1qNg/cwE3DJ8rmFSMJ77U/8WO3+4+E6FR1nFqLhyt2j22J+IQpSM7OO27NQN8jLFbiyMY9/cotRR0qilrFWPcadMjJeVao8iD+nyQZkz2Do4JUCMhuSpPdGjA8L/I3Sknq/oGUQW0tXKnyy/ZyuZfUOhwGdBkHWug+ZwnKCF7VGS65LaisgepKNxYgW5WoowQh8wAIJmJPvf+sTV0TBLfvh7DcP4bQFBI6LJfainyaMLS70zEXjRQQTlZOEbF0mPw3ooQfecfusG56/k0T8GDd2ApvcMLj8k+VXVYrXyPhXILtgvp6GKG54g==','2024-05-21 07:49:02','2024-05-21 07:49:02','hadesDbSvcUser@172.19.0.1',0),(30,15,'osBulkActionProcessor_SECRET_KEY','Pqlka2e7uHITWKxjD685MGMN501BT74hMsfyJklThS4=','2024-05-21 08:07:27','2024-05-21 08:07:27','hadesDbSvcUser@172.19.0.1',0),(31,15,'os_shops_DEV_BUCKET_S3_CREDS','8qQUs0vhaVVUX5EWaVuKdLVEzvK/t1AT32f1hVsUsipXpl9sEDzU7GpfevkL327wyRNpcvvHFo7Ya52ZlgOcbSou3F/l0xbI/stORYzjcJfuupklYsY/yJhk60LBpu2naVLH4CFbdouKY9y7o5jMShE49l6hupjdysvhQXJzCWALET3jbONRynXuJmVKrqDl5DcGwafwd1TiLo3T1rnrp4dbkYgBq3FpN2C81XGFkOmrWDylM5hMnJfhbU8XyKC2','2024-05-21 08:07:28','2024-06-05 14:12:54','hadesDbSvcUser@172.19.0.1',0),(32,16,'sokratiShopsService_SECRET_KEY','6j8JuuDUcAXKGZ02z1PEqH8w2Y4y3ho99cZ/mZKEdz8=','2024-05-21 09:42:16','2024-05-21 09:42:16','hadesDbSvcUser@172.19.0.1',0),(33,16,'SHOPS_ENC_KEY','kYtUkyr7l6XeAr25QHO/zO/eIdLTELUZZ4uFI3rnOqs=','2024-05-21 09:43:05','2024-05-21 09:43:05','hadesDbSvcUser@172.19.0.1',0),(34,17,'adwordsAccessorService_SECRET_KEY','8aWTz5rntorti/vgr4zZsn/Aij0DViLY0C85SUx9oac=','2024-05-21 09:43:47','2024-05-21 09:43:47','hadesDbSvcUser@172.19.0.1',0),(35,17,'BLIBLI_API_DATA','i5MXnNtG9Eb/tsgngOwf6Bq6eGj/nzoLAb9bFZSO2G6Ufm9oB1DCpG5x/1Rp9Va6V0WnkQKUEjkNavCZUO02vM2M7zNPVLOVpDGqhEoH9fJiuG9UFvUjY1KHY4gEESQI7Sgef0krUTJEfL3bX9BO+HvfwA5vpoP4cfRFnF6zDEdYuXM5vuGjnw6WwgiGXTGD2PKmHomThzMEuhPI4bRP++aydbNuKkGZm4gzTyyCaQUBb91gIIkcOLXpkFlNI8lJk7YYUfo8S5VIouLGkia/oHQZN4C3NVMf5KaHvMd7M4EfFbArTN0djOfLmWkPujE4gloD2pvwH9xJXOynEoHc6lYx1UfsdkluH4vlyMkVcOEprlKcJhKieH6exh5FXQvtBy2b9AdAF+c3tZwmqLGdVDXj7QTN3UGEvcCKw0iFN7xvl+za3hJcaHYO9MH/IZ/a','2024-05-21 09:44:36','2024-05-21 09:44:36','hadesDbSvcUser@172.19.0.1',0),(36,17,'BLIBLI_STAGING_API_DATA','i5MXnNtG9Eb/tsgngOwf6Bq6eGj/nzoLAb9bFZSO2G6Ufm9oB1DCpG5x/1Rp9Va6V0WnkQKUEjkNavCZUO02vM2M7zNPVLOVpDGqhEoH9fLY8qYeiZOHMwS6E8jhtE/7yqKEC42k7AUf0DnVSaZjggFv3WAgiRw4temQWU0jyUk/NiCE3btdhphd/WlIgfO2','2024-05-21 09:45:04','2024-05-21 09:45:04','hadesDbSvcUser@172.19.0.1',0),(37,17,'GLOBE_OTP_API_DATA','vpxfCQBqIUAt0oM+KSu3kPBuEsRONnJhCB13tuWuRb47elTHc7yaxGrBlu0G3kZTHAoRIy9/5SGznBV2hmuIWDCnKq8sn9Og7dMCNGFjmHixlmXLbMDsIqneM8cKGYLtn+7kdjQF7B18fon1xGWM1JtHpu6jAyXsxeuNxL7Wfosrvfkh0d0p0aQumpzzlMUstVQ5eoPyTSPOkVuubi2QgYTktJFgiWrtMAFdpWNI+Ie4xrb41LemQC3+szh1nRczNbBAzIjs/Ktxk5D0UXyBf2so9f7dVC/t3O5bLf4XQGGTsTGQS0yiUZ0qDwwdGPaJCM+/qzQvz+H29sbyek8Vxr908NlswnNPJlDFr8Y8cjUCC4jqY6UrUDcX9oMA7wzG','2024-05-21 09:46:18','2024-05-21 09:46:18','hadesDbSvcUser@172.19.0.1',0),(38,17,'PURPLLE_API_DATA','4Sjl65AOgiN5rv7BpM3CHLMM9tsyerWG2GdV+xdWjQlwiNVggtchBXI/7NoJb7Grus9B9+1gZBLeslJQ7+ZlSyPmF+0Pzjj1BhOGACCi1dkf43/5lQeQRNTVIJTKsl5D','2024-05-21 09:49:55','2024-05-21 09:50:36','hadesDbSvcUser@172.19.0.1',0),(39,17,'PURPLLE_STAGING_API_DATA','4Sjl65AOgiN5rv7BpM3CHDso35JCI/8zPJzqQQRbypQ3/U/B41ZqhRK/PURjYIPOqLAiQpC8KIluTG4vhU/Gr81i9qZbbVJAUlj+wC8WfBTZ0947ZcezbJhAYXsX9HX5XVYrXyPhXILtgvp6GKG54g==','2024-05-21 09:49:56','2024-05-21 09:50:36','hadesDbSvcUser@172.19.0.1',0),(40,17,'TAKEALOT_API_DATA','sU6SFTfnN49v8E5e8PEqi1MC0kNuftHg45ZP/NFvPETNt4qOXUUl2efeXkP3Qfj+iYguxGOpkM/znWDvtv2l+UrSjUcQN6YCn4emCONxQpy03bKb1dxP60pxeZEQqgyp2fBtUlGIKwRFqcTstdWHTB+iLMGWAllQKMwq6hGwutwvz/varFXRfv3/Mjd72TX0C97GJc3CYPH3hCIiDyUh4Wfub46fZceItu/5dKm8JpflN+W3VvroE3WjIEq9noR7yCfVTtyKiOGETFf2veKblKxg2FVHm6CTevbwG31GDWCiZJoaPBuw4XiK3SgzSdttO8enITtYTk8VAEnfBcakYw==','2024-05-21 09:49:56','2024-05-21 09:49:56','hadesDbSvcUser@172.19.0.1',0),(41,17,'TAKEALOT_STAGING_API_DATA','sU6SFTfnN49v8E5e8PEqi1MC0kNuftHg45ZP/NFvPETNt4qOXUUl2efeXkP3Qfj+iYguxGOpkM/znWDvtv2l+UrSjUcQN6YCn4emCONxQpy03bKb1dxP60pxeZEQqgyp2fBtUlGIKwRFqcTstdWHTB+iLMGWAllQKMwq6hGwutwvz/varFXRfv3/Mjd72TX0C97GJc3CYPH3hCIiDyUh4Wfub46fZceItu/5dKm8Jpc7nxTSE7+CbMILZCi8Q7Te7ZM+e/1VrGM+VcgjUfbvd6foBVJW3uAp+46NCJ7DV5NaCy1+oSvho1TmLRTRNPUhv2XicoODw06c939NSBjQyQ==','2024-05-21 09:49:56','2024-05-21 09:49:56','hadesDbSvcUser@172.19.0.1',0),(42,17,'TAKEALOT_API_SUPPLIER_DATA','tLVnuQDji9Zyxdh6pZnfYM18+bgzSMrJ4smM/OblfCx9bvWU/PKWWMIrvLTvBX3kBIOnCD+0kT/ifJcLf96s5IBQeobTfLUvh4CHN8Tx6LCaTUPmCqZPkHVEg34ZmSwn/VOVgakx3rm+z+m0/KFGlgCoje2vqLH+ZgOK/ys/f2of8ChtQ5Tj0EzPBcj2m+NOC97GJc3CYPH3hCIiDyUh4a1xqy5glz6sGROtJErI8lswaxem78QVp9WSzlyVu+YCXyR+T+ukeKm202UqiKs0nHSUVJOhl+B7Qj83pDBh+YoJ8xaGn8sQ822uELFGh5bbniNabot6kEnZRu5L5RTbpA==','2024-05-21 09:49:56','2024-05-21 09:49:56','hadesDbSvcUser@172.19.0.1',0),(43,17,'TAKEALOT_STAGING_API_SUPPLIER_DATA','tLVnuQDji9Zyxdh6pZnfYM18+bgzSMrJ4smM/OblfCx9bvWU/PKWWMIrvLTvBX3kBIOnCD+0kT/ifJcLf96s5IBQeobTfLUvh4CHN8Tx6LCaTUPmCqZPkHVEg34ZmSwn/VOVgakx3rm+z+m0/KFGlgCoje2vqLH+ZgOK/ys/f2of8ChtQ5Tj0EzPBcj2m+NOC97GJc3CYPH3hCIiDyUh4a1xqy5glz6sGROtJErI8lug5zTduBQ6iFO3M9QG7p7E+gNdpwPZk1l7uCg6FiIDYzoUJnjEhi4dsRSRkfB5/R6hQq4Kj0zQubGWws8P03cFQheNNdUkFbx6zyRAtx5PrWp0A93rsYzsEYzWOspki6c=','2024-05-21 09:49:56','2024-05-21 09:49:56','hadesDbSvcUser@172.19.0.1',0),(44,17,'BANK_OPEN_API_DATA','4Sjl65AOgiN5rv7BpM3CHFQjmQgWkmcxsi97ni76sD4+DbWX1e5saoXgSxZoO1RTVf36hoE3B46wbxMOjEG42H9Ge+ADGnsXEcO+P7aBXsCrO4WJVmRuhtShX9lh1luhJsifPyMgCZod8A2NUeU50A==','2024-05-21 09:49:57','2024-05-21 09:49:57','hadesDbSvcUser@172.19.0.1',0),(45,17,'BANK_OPEN_STAGING_API_DATA','4Sjl65AOgiN5rv7BpM3CHFQjmQgWkmcxsi97ni76sD4+DbWX1e5saoXgSxZoO1RTVf36hoE3B46wbxMOjEG42H9Ge+ADGnsXEcO+P7aBXsCrO4WJVmRuhtShX9lh1luhJsifPyMgCZod8A2NUeU50A==','2024-05-21 09:49:57','2024-05-21 09:49:57','hadesDbSvcUser@172.19.0.1',0),(46,17,'FLUTTERWAVE_API_DATA','4Sjl65AOgiN5rv7BpM3CHOl+e6TfUjLUubla7iUSSNgF7Bu5Z0ZlXGHSpVYNAQ/tThHGKvRYS1tFSYZdbqYf/oE4YD5BU7j20NPjm03i0xafJZx/r1gZy2iOt3dd05motjIZpCQ3z7+vvJERhBN6Ag==','2024-05-21 09:49:57','2024-05-21 09:49:57','hadesDbSvcUser@172.19.0.1',0),(47,17,'FLUTTERWAVE_STAGING_API_DATA','4Sjl65AOgiN5rv7BpM3CHOl+e6TfUjLUubla7iUSSNgF7Bu5Z0ZlXGHSpVYNAQ/tThHGKvRYS1tFSYZdbqYf/oE4YD5BU7j20NPjm03i0xafJZx/r1gZy2iOt3dd05motjIZpCQ3z7+vvJERhBN6Ag==','2024-05-21 09:49:57','2024-05-21 09:49:57','hadesDbSvcUser@172.19.0.1',0),(48,17,'BUKUKAS_API_DATA','4Sjl65AOgiN5rv7BpM3CHFNKhdoWpLGiHc61boitGl91EGOgeHQaJ/TN+VSR59iH1fw01+aLQ7hqGD8mCnXvBw+rQSc07JpuT5VXPRRlUpJM0kQsovALQDJ2qmTDhubyCcf7K6PXvY7yruEV9UYil5GKzUNE+ZciaoCR79NTHWuUTXweo+rNryNJjD32bBlhYROohu86J3UArlkm2+yU64wwjDCAf9wu+b1ouH4yGrGfQMDa9W4HqyryqjQk+pFyvqG4fm0Hp6jJh9GkYeofa7Ht6eb7F7ac4zB7MY0vm/q4Pf1y4wuo9k5SGdggPctWR/x6bbBD1o5N8xHlD5Pgv4dHCv93Sd916dzj1fQ/iPvUeD92HQHOV3sKkz9HtJWx','2024-05-21 09:49:58','2024-05-21 09:49:58','hadesDbSvcUser@172.19.0.1',0),(49,17,'BUKUKAS_STAGING_API_DATA','4Sjl65AOgiN5rv7BpM3CHFNKhdoWpLGiHc61boitGl91EGOgeHQaJ/TN+VSR59iH1fw01+aLQ7hqGD8mCnXvBw+rQSc07JpuT5VXPRRlUpJM0kQsovALQDJ2qmTDhubyCcf7K6PXvY7yruEV9UYil5GKzUNE+ZciaoCR79NTHWuUTXweo+rNryNJjD32bBlhYROohu86J3UArlkm2+yU64wwjDCAf9wu+b1ouH4yGrGfQMDa9W4HqyryqjQk+pFyvqG4fm0Hp6jJh9GkYeofa7Ht6eb7F7ac4zB7MY0vm/q4Pf1y4wuo9k5SGdggPctWR/x6bbBD1o5N8xHlD5Pgv4dHCv93Sd916dzj1fQ/iPta1T/A7xSt3orGK6MFuK9l','2024-05-21 09:49:58','2024-05-21 09:49:58','hadesDbSvcUser@172.19.0.1',0),(50,17,'OS_MIRAKL_OAUTH_CONTEXT','XUiq+Gr4euAWtl5u1+MZKbe5gFgbaYm107DI+moybvpM51kl/POE67n4/j4trfIFfSgIhKitIeO6n5bMumMENwAtxlyx7QxH6zrDDYTQxSgR4GNE8n9UKg/FvdNJTVpd2hDsj+jlw4KDaUlCCrFDAg==','2024-05-21 09:49:58','2024-05-21 09:49:58','hadesDbSvcUser@172.19.0.1',0),(51,17,'OS_MIRAKL_TEST_OAUTH_CONTEXT','XUiq+Gr4euAWtl5u1+MZKcSeGD8g/3g1WV3iFt0UKx7rBo0GbM5RvYPoa+/tPitwe2IhJWpp7Yg7dlonmwF7bmN4WxAm4uovqrN/3EJRS4jueeHqOr/Zorg0HiMuHuEB4qwNyPOiIurgboIf4b2TsZrKlkmx2TRzUhZZLf3TFu0=','2024-05-21 09:49:58','2024-05-21 09:49:58','hadesDbSvcUser@172.19.0.1',0),(52,17,'SNAPDEAL_API_DATA_IFRAME','4Sjl65AOgiN5rv7BpM3CHFyY6dtt9n5H6jK0z2fAAL5pMIQ56+MaYUhnjJ7Kfc0x+IGm5g6YtFT4FkRE2s+a4QcKRvMmp1rG2Nzap7y8XZiy732ibcx3e4MrXTqfyek8c3e4WRbId2EJOFazytYE25ekPB9R1ufHcbLFXUXYpFr1C+E2xiN2jgrIa8UyIW+p+5BJAgEjsH9ZXJ8poNNK1HBL8Gi5oVaU4yKwt2GI+11k1ho/9jL9IQN4c7onaO6ThSRNHIlH4/TRi+RcHVY98aXhs8Bq+ReP8Tiye7wQALu+3i+k2Dw71dy1Aa2xKLzSecuD93VN0aTrMovUCVDLuiT8HrmMF8TvqO3WjEzGyVH5T+XVTiwV5wuJI2B18NCbak/2tWVrXw7oWPp6JqvlDIOgpSsSbLLZd5JI2txJfyz7wfxOIPAIvyiR0a/L2yTRM0OMd/S0EScemjFVH9UeXVdzjJt1H6HN2iP8CRRIImzZpdA3bMWnV4/gssqb1bu0O7HHwhS/6e6qcY2nykyNl9FgcAnpMkQFgI5LGQpiaTGr9DwebfMOmSXwQFtgORBB','2024-05-21 09:49:58','2024-05-21 09:49:58','hadesDbSvcUser@172.19.0.1',0),(53,17,'SNAPDEAL_STAGING_API_DATA_IFRAME','4Sjl65AOgiN5rv7BpM3CHK9PIZNf98N6RP5gxsXuNfsxVNlUij3HOu55tAnLjO9F9pzK6yxjkY/1pcEJV+EsE2aXQGBxithktN3Fw+VjIvGBYEbafc+IGtBXKcih1EOnwMTzlVeMkA+6ytkzdPR3U6WLeVt3hpixbPetPR9tPr25SHejydS2qNnOvvCZhgViY9nwdfAXwDHVuKXskwKoWT2KyFyjilnM+7lb4ONMi8hR8at1ZOzf2WW8WwbTNeWtwQ1Vj276Isah+nLyvOWHWFX4k6ExdRgsiM/aDDjDTLscVkb+3YfsrLMBdbQRfWC8cIUDw4QXEH/beHXnU4VXdRRM7L2dCVGO5256XHUOzXQ28s/fRGScOUNaLZ07xgJ5t2p+Xg4Koc+PrmFwABvGz/r6gxZ68K82vaFJ6pjc0pemzYfG1Hs2dxAssqgX0TZGHj7h3AKbPX26x1u5mFzaH+/7bhVfHrkTj+oy6x7TaUnnmu+1vSMj92nQ3yiItn4c4aw/RvgVzoi4oDLrBUoy4riIEYVChebvB5AUJCk+c5lz8SD7li97qLs4czt1qdYc+f0FHNBUCoBDr0wlQ4fEEA==','2024-05-21 09:49:59','2024-05-21 09:49:59','hadesDbSvcUser@172.19.0.1',0),(54,18,'configurationDbService_SECRET_KEY','oRp3fCf/zY3YFrtt+W3hLkOccpUOt8FpMY5pTsS2tFU=','2024-05-21 10:25:36','2024-05-21 10:25:36','hadesDbSvcUser@172.19.0.1',0),(55,19,'clientInputService_SECRET_KEY','VE8Xs3bCvptSoW+MAc2dddAg/2C5SSadDZ5LqPXX4BY=','2024-05-21 10:49:42','2024-05-21 10:49:42','hadesDbSvcUser@172.19.0.1',0),(56,14,'MYSQL_OS_PACKAGE_DB_KAM','Ia6VK3fqCgayAFLLGvu6sMZjlOb1WIUBrI5/8BkZk2Q1gePaTFhWnyawCt2fLDp2VJmWjiAsKTpp+9JvlqXZwwuhKcsUD8MiRCYZqcflGkS/975PtbWhq64sdRNkr9OM4UG57HOu3IOriUb/5qCcpevP7FS0fl7VHk8qOnXBSqg1Ww5gS5CaDRFR7gaftfcc3K9Scm0HpATzNnTXm8IxQWZNBfN0Xvc1NsJaNInN545B+yKsn0I/v7nc5Uumg3KIVyoVpeBktYNK5+Gm5jJwZ0PjfXdCBC4uYrA5DJlqaOiPxqWZvHxrcqMtAIKJ5W5/41G7J67Y1lxQU6p90VGHGw==','2024-05-21 13:33:36','2024-05-21 13:33:36','hadesDbSvcUser@172.19.0.1',0),(57,14,'MYSQL_HADES_SLAVE_DB_KAM','kzpDs69/ocwGrKnbkHib4dmo8dQjTb1qNg/cwE3DJ8rmFSMJ77U/8WO3+4+E6FR1nFqLhyt2j22J+IQpSM7OO27NQN8jLFbiyMY9/cotRR0qilrFWPcadMjJeVao8iD+nyQZkz2Do4JUCMhuSpPdGjA8L/I3Sknq/oGUQW0tXKnyy/ZyuZfUOhwGdBkHWug+ZwnKCF7VGS65LaisgepKNxYgW5WoowQh8wAIJmJPvf+sTV0TBLfvh7DcP4bQFBI6LJfainyaMLS70zEXjRQQTlZOEbF0mPw3ooQfecfusG56/k0T8GDd2ApvcMLj8k+VXVYrXyPhXILtgvp6GKG54g==','2024-05-21 13:33:36','2024-05-21 13:33:36','hadesDbSvcUser@172.19.0.1',0),(58,14,'MYSQL_HADES_DB_KAM','kzpDs69/ocwGrKnbkHib4dmo8dQjTb1qNg/cwE3DJ8rmFSMJ77U/8WO3+4+E6FR1nFqLhyt2j22J+IQpSM7OO27NQN8jLFbiyMY9/cotRR0qilrFWPcadMjJeVao8iD+nyQZkz2Do4JUCMhuSpPdGjA8L/I3Sknq/oGUQW0tXKnyy/ZyuZfUOhwGdBkHWug+ZwnKCF7VGS65LaisgepKNxYgW5WoowQh8wAIJmJPvf+sTV0TBLfvh7DcP4bQFBI6LJfainyaMLS70zEXjRQQTlZOEbF0mPw3ooQfecfusG56/k0T8GDd2ApvcMLj8k+VXVYrXyPhXILtgvp6GKG54g==','2024-05-21 13:34:10','2024-05-21 13:34:10','hadesDbSvcUser@172.19.0.1',0),(59,12,'OS_MYSQL_LOCAL_KEY_D','Ia6VK3fqCgayAFLLGvu6sOf+z1hTwTXsk9Pdrp6UpmDrzcU3DncA2pIwo0jYi7LOC7lMYmQBVjGbX2TwoSNFDe5egYcJxv47wqpKdSTICyz3LEd7n9WWSEqBJn/gpbqilaZ+z4k27ScMOg68SUKInkqb6iMq1cUYiqJDe6Iq1wqvwj3pahj44HrSH1wVTXoDwiGsShabotmTQGnm7c7Qt/1u/ZRTNIi2CywpUqnpsgkqlnSNlDlIzWYd3DGJyP7ekKlWwBGkuYmsrUm7G5aeklcqFaXgZLWDSufhpuYycGdD4313QgQuLmKwOQyZamjoj8almbx8a3KjLQCCieVuf+9SYdQ4oLlG8b/NelpOhcY=','2024-05-23 06:43:17','2024-11-25 07:28:41','hadesDbSvcUser@172.19.0.1',0),(60,12,'OS_MYSQL_REDIS_KEY_D','hA7hQ8ok2IkfZrVC+LebdL6NsM80pamFwWAgfJ6T+0dP+nz+pVKPE1FRxxea4PddqEhiOom3nzpx/n3aT2AAIQ==','2024-05-23 06:45:06','2024-05-23 06:45:06','hadesDbSvcUser@172.19.0.1',0),(61,12,'OS_TEST_MYSQL_CREDENTIALS_OPS','Ia6VK3fqCgayAFLLGvu6sOf+z1hTwTXsk9Pdrp6UpmDrzcU3DncA2pIwo0jYi7LOU2stBcJDdvauog7xCmpqjZQtIEgTMA+yVzFGchTEaB3eZ5fxQdyVrJZLarYvSyzI1tGbUrVqp9lZ5+6Weq3/qO00YzXXNxc2Cwyduv1e11YJG88/ct1V9zN1fftnVdLjJuQw+VNxFKxKVJtrxFqGErKWy+/3Rc7CGZk2KKLjCkUDdAK8rFl2zLUNkkk1iBxeoYyZiG72aNb2rk5liNGMfi1e3PpRpm9SlN5ewX1PQvC/n1u2piriFlmfQfTOecFRbSI2i8NCBhDMRLnk9SvkexI1mK4wfsR/GyVXSw8vurm9gCfqqBcj4hXOpfzUNbHopI8d/RQV7ZTaAppeqoJfLw==','2024-05-24 06:35:44','2024-05-24 06:35:44','hadesDbSvcUser@172.19.0.1',0),(62,12,'OS_TEST_REDIS_CREDENTIALS_OPS','JaDcxpjqi4CGEsipIASWc0k4Lc+LiMoYGBkylbgwa397Go1Zr8GxvC5rrjuQ1JfM8AQr/NseFeQ2KUNmhKp0OxJ0IDX6IHgUgdNAbZuC7iyty2TxTXwOW9pTZNbMjMUX','2024-05-24 06:36:31','2024-05-24 06:36:31','hadesDbSvcUser@172.19.0.1',0),(63,20,'creativeUploadService_SECRET_KEY','wGCUJaM4iuqX8T3Y+UOJVdpSKeyl+iFjbEsIQtS0/rQ=','2024-05-24 07:16:45','2024-05-24 07:16:45','hadesDbSvcUser@172.19.0.1',0),(64,20,'OS_MONGO_CREDENTIALS','LuBFou0SmhucN7xUrEBXTCaazYeeeHYMw+cf/72K+Y6SvbKhNAU2dTOJ1XWNsm1C8ghI/FksoR4p+19HjkCs8r1WSycXDcs2MI94KPxf/gh/Va1kXHkDz6asLwEb38KZfbw0/LpS7+q2ZtUu/jTyDlFTeEolV/bDFatqMMYPjdUgm5lV51tGdAHjcmHu7XTB','2024-05-24 07:19:35','2024-05-24 07:19:35','hadesDbSvcUser@172.19.0.1',0),(65,20,'TVING_MOLOCO_PROD_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZBvnsl3jlcDgbqvh5KAXk+4N7+3NV/dKkTkhhWC5/zkLCv11uk0/TdSFK/0ByKEbukKwkeZQh+dN8FSJ01q1yA3kwiguA2mbYSK51wgM8nhojBatX29bzh5VWObhYZUCdx8crSIGW/GczbYuaLvu/lAxMt8lWJRq18qSthPpukLbQLGe9iCfgoofi1Gtx0pwdlZjsi4GCtaUYue3c9RX4vf+gBocCG+jv2IkDtbUe1py85VDwUT7RMcadsZ0SKroe','2024-05-24 07:19:35','2024-06-10 10:10:10','hadesDbSvcUser@172.19.0.1',0),(66,20,'TVING_MOLOCO_STAG_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZJyJcDVdiNSzhoEZ8O0fhixUgjEy30xDLnjqvTbKgWkJC6ZCqiMsl2qe5GrIrUF8xa8rfe1aljfuvLxzuRxTadIb72Mk8w6iLcaiVPUsfAwcjBatX29bzh5VWObhYZUCdSO8uVMduncLW2sFOpDRFkFcV9dJYhsNRhu4XMq90ytoKb/p+e++FRGy3AsJgZJoMKVNFddbGSTlMPH6GRq4hbevNeixvVbnfecJpddRZRF9PFEonKElVEYdC74xXUURN','2024-05-24 07:19:36','2024-06-21 07:14:58','hadesDbSvcUser@172.19.0.1',0),(67,20,'hotstar_cdn_credentials','euvnhfJAXJzDTN2cvG0/Wg==','2024-05-24 07:22:12','2024-05-24 07:22:12','hadesDbSvcUser@172.19.0.1',0),(68,20,'hotstar_cdn_credentials_staging','euvnhfJAXJzDTN2cvG0/Wg==','2024-05-24 07:22:12','2024-05-24 07:22:12','hadesDbSvcUser@172.19.0.1',0),(69,20,'hotstar_sports_cdn_credentials_prod','euvnhfJAXJzDTN2cvG0/Wg==','2024-05-24 07:22:12','2024-05-24 07:22:12','hadesDbSvcUser@172.19.0.1',0),(70,20,'hotstar_sports_cdn_credentials_staging','euvnhfJAXJzDTN2cvG0/Wg==','2024-05-24 07:22:13','2024-05-24 07:22:13','hadesDbSvcUser@172.19.0.1',0),(71,20,'redis_credentials','JaDcxpjqi4CGEsipIASWc/3NrWGrfPpN0CuAPoeJUR2+YNxazW3mrrTNqyq90ZlaCu7Ikc/ds73SvJc1K3eP7tbScU6Q47gmzo6oQ3xeOBNdVitfI+Fcgu2C+noYobni','2024-05-24 07:23:35','2024-05-24 07:23:35','hadesDbSvcUser@172.19.0.1',0),(72,21,'commentsService_SECRET_KEY','Hz8fY6z4cH7MBno6xcsSC9Hf3ml77jZ9WiTfYvcXAZk=','2024-05-24 07:43:53','2024-05-24 07:43:53','hadesDbSvcUser@172.19.0.1',0),(73,21,'MONGO_COMMENTS_DB','LuBFou0SmhucN7xUrEBXTCaazYeeeHYMw+cf/72K+Y6SvbKhNAU2dTOJ1XWNsm1C8ghI/FksoR4p+19HjkCs8r1WSycXDcs2MI94KPxf/gh/Va1kXHkDz6asLwEb38KZfbw0/LpS7+q2ZtUu/jTyDgKP0IkzdFJMwlMU7h+Gk99dVitfI+Fcgu2C+noYobni','2024-05-24 07:43:53','2024-05-24 07:43:53','hadesDbSvcUser@172.19.0.1',0),(74,22,'reviewServiceConsumer_SECRET_KEY','qbgoO/V0eFUy0t0+oAECrxxKW/QBqv4RfVl4CI3+Mr0=','2024-05-24 07:56:30','2024-05-24 07:56:30','hadesDbSvcUser@172.19.0.1',0),(75,22,'os_gcp_staging_kafka_broker_creds','1GkTwDOR+AWX9ukJsPXHPMO8LzN14HIy4QRug3bJbz/wUyJKqmbd3n2qOiC4d/q8ULeFvirz6LSZP3cvUQoZqCqqx8Tl3Jtp59CQlXGUGQhZnJw5txMsqZgabtMuymRA','2024-05-24 07:56:30','2024-05-24 07:56:30','hadesDbSvcUser@172.19.0.1',0),(76,23,'reviewService_SECRET_KEY','N0kXnBQ68+6d2Rf2Vi8d5dvUFRA5B2sdnneZ+yWBMRg=','2024-05-24 08:04:27','2024-05-24 08:04:27','hadesDbSvcUser@172.19.0.1',0),(77,23,'REVIEW_SVC_STAGING_MYSQL_CREDENTIALS','eIs8/8AYOjunaadBTCPiv5qsKmVOx6jpM8hRnz4CUmNMq/tS5gCD7svSTrx36QScwgze6LfWKBZqpZsX05090b8GyssUOmjsAe8R09pXpuOr+BUp/mDk5KYtMM3DVTg68sv2crmX1DocBnQZB1roPmcJyghe1RkuuS2orIHqSjcWIFuVqKMEIfMACCZiT73/rE1dEwS374ew3D+G0BQSOiyX2op8mjC0u9MxF40UEE5WThGxdJj8N6KEH3nH7rBuISuc++b6B+3JJkvr4/fDMVIi92UHwT5tCL6GDHTapE+HWH93z28MERqjNCQIbhbM0F0QucHCgzrYWKMwHzF+2A==','2024-05-24 08:04:27','2024-12-11 09:10:06','hadesDbSvcUser@172.19.0.1',0),(78,12,'OS_MYSQL_LOCAL_KEY_RS_D','eIs8/8AYOjunaadBTCPiv5qsKmVOx6jpM8hRnz4CUmP3LEd7n9WWSEqBJn/gpbqiC13xS8F6hLp1H1soVj40Ox3dSWdyf4nIHbHLeO+8HV/UzGiGCsJgHBud8tjnyaCWYvGNemdmdQW6XFEY117oWDV33zW2s6ZEWNLHtIrUJembQLQGE8TAra+n2fhWETqlhohVyicdVQ0gK2jKbTJOkx3EBA1E0ohxZmxPGY6wOvlZnJw5txMsqZgabtMuymRA','2024-05-25 19:37:03','2024-05-25 19:37:03','hadesDbSvcUser@172.19.0.1',0),(79,20,'TVING_STAG_MLC_TOKEN','CvAZZcUQKsKPG/aUd2tN0+rJD3i563BwbqsIQ78kxcI8pCYNhbAJmZRmAQJZ/PuPJdN9K/sLN9sg9AraJqRi++xKgRhoPlQj8L4P59T++w7VQcOtq6effwFDVx3tght529CV6oO2bTAsCuH6WG2XPhSQH8MkgPkRCByIYnWSBzPf0b40+iC0YP9+2gA0831Ac6ZbOHFBVduVaS0Ci93NCuqicjKEb8M3qvAf1B7g1WosnURU65CiYxfJfdYNY4VyO/kX0T5nYpdVULK0IXGZi2+VGLDg/ydhGO2CN/4x9Deh1jpBgcyPyqI4+afPN2NlexSrjJKOD+UiraUSL2JxxiY1Tz4uleYNbhf/A/XYKuOC6dVnt9XPtAvIwqIL2lopjd9QAcj4LdnTrG7DGcx6rWdIkOl8fiP9OkAr1N9FfXK0dBBiXeT3jSwHX2cUXx5V5mS8/TREL44ZZ9BmwDLjkh0nh4fXOdyvKFE+rrtVkPydnH98Tl4cx+3L+HYbZvcFXC/eZZBQSg/B+KGlOEijer98y9lr/09jKNyBxzlumZoa6IYiwIRRP80qhe5t0pWoQT493Jkjn6GbBtblTqz0sxPGUEpfbhzcf9e8Ys7gjnsxmOxvXrEwpciEhbTwyhIzQBpotHrdB3RHAEODAKNAxTJwDIOJB7IugV2WUxtCE06Dxlu2I3QXLAVdC9uTg8DMiXZB3xXf3cGqh0GaJmESTiCBF5rEbRIeO0WneY92YtGjucsYYrMBGyBK2F92qCqRofReNk5wAtdHOzAb6Nfh3Aw7mvJ/kcCV6HeDwfsj9knEolXzDW1qYHMVgSAGMHOoR5CidgHlHS/5B4gwXxnI8w==','2024-05-28 12:58:14','2025-05-22 13:25:45','hadesDbSvcUser@172.19.0.1',0),(80,20,'unsplash_credentials','o+SNti5Ea319h/OncBEl85ZG+lltn8bnGoEdMIegaAr46WkKdVb4LyR1V7OGAabFTP/YOekoOGVLmWGuFzUitlS2vnaidX2ZUfJi17phGvHaK/aXC8FZHwsZrPSG/SPPC2gTLAxqcgUoQHymykuOdoHxqpvnOLTKcHloveTz/zY=','2024-05-28 13:28:38','2024-05-28 13:28:38','hadesDbSvcUser@172.19.0.1',0),(81,20,'pexels_credentials','RHAKf85wuGP4gV9s3ZQCwJjXh1dQ9l9vIGKp89QHOWAx54kM3wsc8ersRRMn8XpT33M9DLvj9RdNXxfPi2qTAtwDM+XksAWCI3zeDxAtoHzPt2PhbUITXUcnrQg6cFMpZSPnl9RWR9ljG7k4y3eG/yrcZl/3MDPh1WM1zSk6uts=','2024-05-28 13:29:17','2024-05-28 13:29:17','hadesDbSvcUser@172.19.0.1',0),(82,12,'os_gcp_staging2_kafka_broker_creds','1GkTwDOR+AWX9ukJsPXHPMO8LzN14HIy4QRug3bJbz/wUyJKqmbd3n2qOiC4d/q8ULeFvirz6LSZP3cvUQoZqCqqx8Tl3Jtp59CQlXGUGQhZnJw5txMsqZgabtMuymRA','2024-05-28 14:25:03','2024-05-28 14:25:03','hadesDbSvcUser@172.19.0.1',0),(83,23,'OS_TEST_MYSQL_CREDENTIALS_RS','eIs8/8AYOjunaadBTCPiv5qsKmVOx6jpM8hRnz4CUmPdb/eFJDpa+nUX9dg9pDyw1rhwAuIZVjrZEnGhWBxRb2xMxqKuXoNtwgqXPormgm/UMhhpkUomDdor2rOjsKk24aj2T8yk4GFwaQOmuyUnKtNGZNZDgQltNV38/U8GXJs1d981trOmRFjSx7SK1CXpm0C0BhPEwK2vp9n4VhE6pYaIVconHVUNICtoym0yTpMdxAQNRNKIcWZsTxmOsDr5WZycObcTLKmYGm7TLspkQA==','2024-05-29 06:17:40','2024-05-29 06:22:00','hadesDbSvcUser@172.19.0.1',0),(84,12,'OS_TEST_MYSQL_CREDENTIALS_RS_O','eIs8/8AYOjunaadBTCPiv5qsKmVOx6jpM8hRnz4CUmPdb/eFJDpa+nUX9dg9pDyw1rhwAuIZVjrZEnGhWBxRb2xMxqKuXoNtwgqXPormgm/UMhhpkUomDdor2rOjsKk24aj2T8yk4GFwaQOmuyUnKtNGZNZDgQltNV38/U8GXJs1d981trOmRFjSx7SK1CXpm0C0BhPEwK2vp9n4VhE6pYaIVconHVUNICtoym0yTpMdxAQNRNKIcWZsTxmOsDr5WZycObcTLKmYGm7TLspkQA==','2024-05-29 06:56:09','2024-05-29 06:56:09','hadesDbSvcUser@172.19.0.1',0),(85,23,'OS_MYSQL_LOCAL_KEY_RS_D','eIs8/8AYOjunaadBTCPiv5qsKmVOx6jpM8hRnz4CUmP3LEd7n9WWSEqBJn/gpbqiC13xS8F6hLp1H1soVj40Ox3dSWdyf4nIHbHLeO+8HV/UzGiGCsJgHBud8tjnyaCWYvGNemdmdQW6XFEY117oWDV33zW2s6ZEWNLHtIrUJembQLQGE8TAra+n2fhWETqlhohVyicdVQ0gK2jKbTJOkx3EBA1E0ohxZmxPGY6wOvlZnJw5txMsqZgabtMuymRA','2024-06-04 06:07:17','2024-06-04 06:13:35','hadesDbSvcUser@172.19.0.1',0),(86,23,'OS_TEST_MYSQL_CREDENTIALS_RS_O','eIs8/8AYOjunaadBTCPiv5qsKmVOx6jpM8hRnz4CUmPdb/eFJDpa+nUX9dg9pDyw1rhwAuIZVjrZEnGhWBxRb2xMxqKuXoNtwgqXPormgm/UMhhpkUomDdor2rOjsKk24aj2T8yk4GFwaQOmuyUnKtNGZNZDgQltNV38/U8GXJs1d981trOmRFjSx7SK1CXpm0C0BhPEwK2vp9n4VhE6pYaIVconHVUNICtoym0yTpMdxAQNRNKIcWZsTxmOsDr5WZycObcTLKmYGm7TLspkQA==','2024-06-04 08:24:01','2024-06-04 08:24:01','hadesDbSvcUser@172.19.0.1',0),(87,22,'os_gcp_staging2_kafka_broker_creds_rsc','1GkTwDOR+AWX9ukJsPXHPMO8LzN14HIy4QRug3bJbz/wUyJKqmbd3n2qOiC4d/q8ULeFvirz6LSZP3cvUQoZqCqqx8Tl3Jtp59CQlXGUGQhZnJw5txMsqZgabtMuymRA','2024-06-06 05:36:01','2024-06-06 05:36:01','hadesDbSvcUser@172.19.0.1',0),(88,12,'TVING_QA_MOLOCO_STAG_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZwuGmSVbGCjQyJotS7KxlB2kg729IMl3YRCTfNrgMiSYsEn5yYSECf6/+FX0KaiWNbucJPtSpp5VFgujlN9xl8wEhJG/XSN3k0m5lGasVNHwzqdtFu4Y9/ry/AeKtq6z+/WhRQ6T4SN2BzMtflbqKqw6zpXKXF4iUX08VQYifm5oeQhPGfTxO87G07NFo2KVdJ44p04CWoFPjIz0iXalvK3BVSjkTSeoyfTBvM57C4cN5/tth6+3Drdg2WxJVk6pm','2024-06-10 09:02:46','2024-06-10 09:02:46','hadesDbSvcUser@172.19.0.1',0),(89,12,'TVING_QA_STAG_MLC_TOKEN','CvAZZcUQKsKPG/aUd2tN0+rJD3i563BwbqsIQ78kxcI8pCYNhbAJmZRmAQJZ/PuPJdN9K/sLN9sg9AraJqRi++xKgRhoPlQj8L4P59T++w7hDGk3TiBggpttgo/EaM3TaQ1yjScnljrVcU1iGBYz3SKmB5EMFTb1jc7+xg1WSW3f0b40+iC0YP9+2gA0831AiUdI9UR2s9IwYVTa64mxL+smwYOSreTIZIShTWXyR1gyYrirNt4f0UhSgc6jzNXeO/kX0T5nYpdVULK0IXGZiznwbmTQC+yuGGD45Wlfb+TT+oTeoaXYLz2VG5LhO3ZSbKRxDSzrrIbQwF4KahWZCXJBLtdf+W/jRVZclCCiRisusWO6RShcQaYYsF5OL9LIFM6Yc6rptwbQ9cvBXw8b/ZTL+xzy78Q+7VIVy1pZMNed73BW6GzfyF/w+6MPiafqdTzav6pOIu4liEY41McpHHbDaMWW90M91LN98LmpIc0mHdhPkn3r9+i2HZk+F2BtA7zz1Pr+dmiu8e6CoxYdJuAJc00SkE60U3XwWq56+9mPj1/Tf7JMpmiiNiD/eFappxLW40KUR/4ijGU7rTwGcZ324tq3NppyXDPms11gW/61fltR9vfuHM1m0wpcCZopE93EE7uJ4kT3MaU+ttwRDDbDQxL/tiF67Q+mzdgGvehh3I5IFQbtZj8T2ceMK7A/XGKQPZiE2Tojq0re7Us1meqJQLOdYM5xVc8Fgbs6sae/ntuKdvL8Q3YkqGzGkJ3Q0qxqs+pLj7uW93XDJkkq4Jpgq9x8NyGB5umjxI5keB3ytHcpe2frBPeHDwcACgxa','2024-06-10 09:03:09','2025-03-11 04:53:17','hadesDbSvcUser@172.19.0.1',0),(90,20,'TVING_QA_MOLOCO_STAG_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZwuGmSVbGCjQyJotS7KxlB2kg729IMl3YRCTfNrgMiSYsEn5yYSECf6/+FX0KaiWNbucJPtSpp5VFgujlN9xl8wEhJG/XSN3k0m5lGasVNHwzqdtFu4Y9/ry/AeKtq6z+/WhRQ6T4SN2BzMtflbqKqw6zpXKXF4iUX08VQYifm5oeQhPGfTxO87G07NFo2KVdJ44p04CWoFPjIz0iXalvK3BVSjkTSeoyfTBvM57C4cN5/tth6+3Drdg2WxJVk6pm','2024-06-10 09:30:06','2024-06-10 09:30:06','hadesDbSvcUser@172.19.0.1',0),(91,20,'TVING_QA_STAG_MLC_TOKEN','CvAZZcUQKsKPG/aUd2tN0+rJD3i563BwbqsIQ78kxcI8pCYNhbAJmZRmAQJZ/PuPJdN9K/sLN9sg9AraJqRi++xKgRhoPlQj8L4P59T++w54NgGjxmfMllt/kXUtO2Q36TtDsz+V275Oy/DdrHBITEABiHWnB9RvVGqoKcQ09pHf0b40+iC0YP9+2gA0831AiUdI9UR2s9IwYVTa64mxL+smwYOSreTIZIShTWXyR1gyYrirNt4f0UhSgc6jzNXeO/kX0T5nYpdVULK0IXGZiznwbmTQC+yuGGD45Wlfb+TT+oTeoaXYLz2VG5LhO3ZSbKRxDSzrrIbQwF4KahWZCXJBLtdf+W/jRVZclCCiRisusWO6RShcQaYYsF5OL9LIFM6Yc6rptwbQ9cvBXw8b/ZTL+xzy78Q+7VIVy1pZMNed73BW6GzfyF/w+6MPiafqdTzav6pOIu4liEY41McpHHbDaMWW90M91LN98LmpIc0mHdhPkn3r9+i2HZk+F2BtA7zz1Pr+dmiu8e6CoxYdJuAJc00SkE60U3XwWq56+9mPj1/Tf7JMpmiiNiD/eFappxLW40KUR/4ijGU7rTwGcZ+4B6eDCBJArQa6TqNkw8B9MFVwYALoCLR0ZN4UCclgDG1VKoBvGww6J8or/EwOCiTe3eNTDQfRKx03szN9bUAcVb/iUUCwAurX1NdHqeoRGSSkug66g0LbqoKgjUjH3w==','2024-06-10 09:32:26','2024-06-10 09:32:46','hadesDbSvcUser@172.19.0.1',0),(92,20,'TVING_PROD_MLC_TOKEN','CvAZZcUQKsKPG/aUd2tN0+rJD3i563BwbqsIQ78kxcI8pCYNhbAJmZRmAQJZ/PuPJdN9K/sLN9sg9AraJqRi++xKgRhoPlQj8L4P59T++w5nksgv1tlMnkQvd7v7bALg8r8OlzRnvbuV89etOVTU6Y1DJ8Zy3YnT9/+79RDf9Erf0b40+iC0YP9+2gA0831AiUdI9UR2s9IwYVTa64mxL+smwYOSreTIZIShTWXyR1gyYrirNt4f0UhSgc6jzNXeO/kX0T5nYpdVULK0IXGZiznwbmTQC+yuGGD45Wlfb+TT+oTeoaXYLz2VG5LhO3ZSbKRxDSzrrIbQwF4KahWZCXJBLtdf+W/jRVZclCCiRisusWO6RShcQaYYsF5OL9LIFM6Yc6rptwbQ9cvBXw8b/ZTL+xzy78Q+7VIVy1pZMNed73BW6GzfyF/w+6MPiafqdTzav6pOIu4liEY41McpHHbDaMWW90M91LN98LmpIc0mHdhPkn3r9+i2HZk+F2BtA7zz1Pr+dmiu8e6CoxYdJuAJc00SkE60U3XwWq56+9mPj1/Tf7JMpmiiNiD/eFappxLW40KUR/4ijGU7rTwGcefShlB4vRbQMwgCuJCBwV5OlnSvTbUsPXjRDAKCRHTFE93EE7uJ4kT3MaU+ttwRDDbDQxL/tiF67Q+mzdgGvehh3I5IFQbtZj8T2ceMK7A/XGKQPZiE2Tojq0re7Us1mQrApCZ10G58uowwX4tkoaZ+GHjSACc2PTDUlLan5XafuZLKdpfJ3lCKL+1RUhWfuHVhwr49PdwGG6rcnIkAOQQUJhvoqMoQDnNbVM50sZcz','2024-06-10 10:11:00','2025-03-04 08:06:19','hadesDbSvcUser@172.19.0.1',0),(93,24,'osPackageSvcScripts_SECRET_KEY','io57t9NKLPIw73FasaVbOgATL+l9na6H/XwVCbMfgiY=','2024-06-10 11:57:31','2024-06-10 11:57:31','hadesDbSvcUser@172.19.0.1',0),(94,24,'TVING_MOLOCO_STAG_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZJyJcDVdiNSzhoEZ8O0fhixUgjEy30xDLnjqvTbKgWkJC6ZCqiMsl2qe5GrIrUF8xa8rfe1aljfuvLxzuRxTadIb72Mk8w6iLcaiVPUsfAwcjBatX29bzh5VWObhYZUCdSO8uVMduncLW2sFOpDRFkFcV9dJYhsNRhu4XMq90ytoKb/p+e++FRGy3AsJgZJoMKVNFddbGSTlMPH6GRq4hbevNeixvVbnfecJpddRZRF9PFEonKElVEYdC74xXUURN','2024-06-10 11:57:31','2024-06-21 07:20:21','hadesDbSvcUser@172.19.0.1',0),(95,24,'TVING_MOLOCO_PROD_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZBvnsl3jlcDgbqvh5KAXk+4N7+3NV/dKkTkhhWC5/zkLCv11uk0/TdSFK/0ByKEbukKwkeZQh+dN8FSJ01q1yA3kwiguA2mbYSK51wgM8nhojBatX29bzh5VWObhYZUCdx8crSIGW/GczbYuaLvu/lAxMt8lWJRq18qSthPpukLbQLGe9iCfgoofi1Gtx0pwdlZjsi4GCtaUYue3c9RX4vf+gBocCG+jv2IkDtbUe1py85VDwUT7RMcadsZ0SKroe','2024-06-10 11:58:09','2024-06-10 11:58:09','hadesDbSvcUser@172.19.0.1',0),(96,24,'TVING_PROD_MLC_TOKEN','dsxFKQdOFp3GaqavH6/eIDqRJCHdxyr0jC8eSFeVa9jVOzGXyPkkgHWg1Wjp1n9s','2024-06-10 11:58:49','2024-06-10 11:58:49','hadesDbSvcUser@172.19.0.1',0),(97,24,'TVING_STAG_MLC_TOKEN','aKDeaZBtXJCuFHJ89u1BL/DQtiloVGHCy0q6VRMRNqGBa+nok562XTOHGZ2dEZ9p/+Bw6Pq4V8GEs/gDgBqjeLNd4WdVb8/QLhwFQsPo4DUZXoFfCE4gQL3i3GoKlaQ1Br9lu5e5Wo8vpya9h6aKu6jQs0BvYR0KVBu3EsBgRhcvpwaLxXN+cLruwA9STGYlcykUIW1Qin0XvPKZsxXQeN26xYGrlm3f59dV/XVjGh1OlORXra4yFslNlfMq//BtDnM0E90pS1QlwFYDotT69dYhhfMaqPr1P4MotztaKB0VBLG33eZfyJ/G1XiuGl3GeMLldPDMpiilZfwYRK8HzIMGOXPIbZJtd/dkbx5HZr8vsyLMpYt+rg0zIgyiDuXhsipd+tacKoNT3JqxXwNB0IFd2dKXMsGcBmlUUr1bX9VdIY9YhFLInrdHi/Y4JGpv4p8uoJ+mwQ9pUwA+mUFetG/Lwd9PyLzyMabVNxGyHR6+UjmRmqchDoLKHy/ds+Vcp6QF3JzEQvq6NdL79jt3PMGhru04sFD1uZJGCKuoZj2Fqdg/pTP6sJ+mR/xdDCG8+aMuiognFXZuO3qx5sS2ztdSmXVi+jcV94MujVnkhKJpCvRK/WmWYvyeMPFF/QeJQBEbAQpBSD3LdTHozB7zE2aK/fjYhcJZBQgJXSYV1H+CxCsjUIBAHX8Eriar8l2c5NZQSZyYGrfS7dojdxtSr5dvPDlSQik97Dj+daUFch4ZRpNR7+oXKSRauAjaMMWeTAmdKK5msUSGFm6CCflQN1mcnDm3EyypmBpu0y7KZEA=','2024-06-10 11:59:00','2024-12-09 09:37:08','hadesDbSvcUser@172.19.0.1',0),(98,24,'TVING_QA_MOLOCO_STAG_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZwuGmSVbGCjQyJotS7KxlB2kg729IMl3YRCTfNrgMiSYsEn5yYSECf6/+FX0KaiWNbucJPtSpp5VFgujlN9xl8wEhJG/XSN3k0m5lGasVNHwzqdtFu4Y9/ry/AeKtq6z+/WhRQ6T4SN2BzMtflbqKqw6zpXKXF4iUX08VQYifm5oeQhPGfTxO87G07NFo2KVdJ44p04CWoFPjIz0iXalvK3BVSjkTSeoyfTBvM57C4cN5/tth6+3Drdg2WxJVk6pm','2024-06-10 13:08:10','2024-06-10 13:08:10','hadesDbSvcUser@172.19.0.1',0),(99,24,'TVING_QA_STAG_MLC_TOKEN','aKDeaZBtXJCuFHJ89u1BL/DQtiloVGHCy0q6VRMRNqGBa+nok562XTOHGZ2dEZ9p/+Bw6Pq4V8GEs/gDgBqjeLNd4WdVb8/QLhwFQsPo4DV044ZCACGDJabkeP7pXIxMva5xe8NgW1ehtqyiWuHURyHN5C2zd0IJH/O24K4kuZUvpwaLxXN+cLruwA9STGYlCyizlCS1SnakFN/wxihSgiSvrHmSNH+zygyvRsgibxXi9bvZN/IOgEL8oJ1DccE1DnM0E90pS1QlwFYDotT69XDjPzRKC4SpCqwcHYJiKiiT4ShezDhywpadMCxjis6BsIBKBPHc1qtcAh95dbRBlUG5NVvuQC/NqQnUG3ElUgKf22Wz+eQYqBI+gD1JKoRdJkGEm/s+XV3aCwDDycRdOBy8rQkHRkUX0QgVyIaiQbkmZdWix+NUYuXIUHlTX1mDyBy4XtlWGW1o/tKnMgvmcWyWIpVDMbnHK7/4XBIhACrnq8ko0HJCe8rH8WM7up/Af4utKDKkmXTqAPjvspc9P2TjQyDj4pirrTvpwqK20BKeyH3pidte5ZMb0oFCyUR5hFN74PH7S0x7L9CZMJDNJnNrycZJwJZ4AGJYhkX/8795wlp9BpHmtlHAKhhv61l8VL4rbsvg+Wksz29w1iwFSRZXy3wj7eEihij3MlC84qMQgs037iH9gbkZUDqBEckxX1kL5n0APE93S4C2i4KnvCAXWq7VoFZ0JDy2KJ3NsOjlyKlxSdv8hgLt+6evkHCs+B6kGu/mKslhUOpATzqDow==','2024-06-10 13:08:23','2025-01-14 14:50:40','hadesDbSvcUser@172.19.0.1',0),(100,23,'REVIEW_TEST_STAGING_MYSQL_CREDENTIALS_AYUSH','eIs8/8AYOjunaadBTCPiv1FkANorcOFp337cg5ia7jQsNQvhXT2J+ZvWtVjCQpRqhA7hQ8ok2IkfZrVC+LebdDt2aKy2/3Khm+O4EuvOwmLecVISjPHZPnGRaK9qNeB2U9Ii60PJIr2QdW22uwYkhW6O1twbQXhOWmbJ+S2x31mA0ZZT8r28YN156Kfe60Re1BKT8mc+aasOBhtSNTTuDHbisslt3CXA42wn0vyqTAPbja9l51+LL+4VVlycqYXFebflXw5FBf1b4Skv8vNqGZtAtAYTxMCtr6fZ+FYROqWGiFXKJx1VDSAraMptMk6THcQEDUTSiHFmbE8ZjrA6+V1WK18j4VyC7YL6ehihueI=','2024-06-12 08:15:02','2024-06-12 08:15:02','hadesDbSvcUser@172.19.0.1',0),(101,12,'REVIEW_TEST_STAGING_MYSQL_CREDENTIALS_AYUSH','eIs8/8AYOjunaadBTCPiv5qsKmVOx6jpM8hRnz4CUmP3LEd7n9WWSEqBJn/gpbqiC13xS8F6hLp1H1soVj40Ox3dSWdyf4nIHbHLeO+8HV/UzGiGCsJgHBud8tjnyaCWYvGNemdmdQW6XFEY117oWDV33zW2s6ZEWNLHtIrUJembQLQGE8TAra+n2fhWETqlhohVyicdVQ0gK2jKbTJOkx3EBA1E0ohxZmxPGY6wOvlZnJw5txMsqZgabtMuymRA','2024-06-12 08:16:56','2024-06-12 08:21:45','hadesDbSvcUser@172.19.0.1',0),(102,25,'marketingCampaignSvcV2_SECRET_KEY','pt/JwAqHoh3TE1IQH87fDy46rB1sPOMn9vXN+lq/gSA=','2024-06-12 12:42:35','2024-06-12 12:42:35','hadesDbSvcUser@172.19.0.1',0),(103,25,'test','euvnhfJAXJzDTN2cvG0/Wg==','2024-06-12 12:43:18','2024-06-12 12:43:18','hadesDbSvcUser@172.19.0.1',0),(104,25,'MERCH_THEME_SETTINGS_S3_CREDS','XvLZ5ggUb3gdB1c/nWsbov5b+8EG/OgIhxCyBPTmaL+tzI7yA/m5wV7mYYSOxOY4OBW3jJghYqn3Vh93L+m8s57yVf7VybFUJsuk+Aj5AEBqOZ8kkMbc835oEluxRVmomuAJInUrdRZIDWG8w5Mkeg==','2024-06-12 12:47:51','2024-06-12 12:47:51','hadesDbSvcUser@172.19.0.1',0),(105,26,'molocoLauncher_SECRET_KEY','oAPZOMfvZPmAaPVHt6b9oS7VatjkW++FjpLYYZzWC4o=','2024-06-12 15:35:42','2024-06-12 15:35:42','hadesDbSvcUser@172.19.0.1',0),(106,26,'MOLOCO_AUTH_KEY_STAG','PJ7b8CXuKofl5b8K6cRlFQ+gKp7vLksWM0P5in/7oOhDAZi4lxocdZ5sFhyF1hb2FK9Lf2SuS7jDAAkZzrIo9/JzNlhWovHxVs9WuXDE61PyHFfeW+0GtjDLpEH6Ym6mtv4MG7vv9tT8Kcnt5Qa3ZaiA61cLfjL2SnwHrMaCJgWZoGFKLVwqdUR/q9FhCwCnkVPVe5+SYZa5hTmrYtqi8TtS99nGC2jUPJqqqjdJQYOlW4vDfuCCrq41WltcwIBNOnW+cpSaSO4ng2p6J8WCUgR/Z5FFLzcq4/PYoG5zVq8LLL0PPo7RJL1ugcqOEmEcUqTkQGz9bebwwvRxTlRMBeby6KLXeJ3T6Ye5QVlvfjpeja9iz5Rkv/jcyiyoDUfOpBtU89r92z6O0IozVk92ug==','2024-06-12 16:11:46','2024-06-12 16:11:55','hadesDbSvcUser@172.19.0.1',0),(107,27,'taggingService_SECRET_KEY','h9Sy7TZzRFkA+POPJbmLCMNJiOrGFnQ/ZGf1vFY7kmc=','2024-06-12 18:00:59','2024-06-12 18:00:59','hadesDbSvcUser@172.19.0.1',0),(108,27,'os_MONGO_CREDENTIALS','LQOBMgmWdWyIRjE2T0yrisI30vYOlNBDH9xRbbZ8cfCSvbKhNAU2dTOJ1XWNsm1C8ghI/FksoR4p+19HjkCs8r1WSycXDcs2MI94KPxf/gh/Va1kXHkDz6asLwEb38KZZRZ9TSTbveydUN4cJla763zq3hSBZLQbwRIeKJUMJrGH3YvEGaC3lGIKjw3sgF8s','2024-06-12 18:00:59','2024-06-13 00:26:42','hadesDbSvcUser@172.19.0.1',0),(109,26,'tops_prod_mlc_token','CvAZZcUQKsKPG/aUd2tN0+rJD3i563BwbqsIQ78kxcI8pCYNhbAJmZRmAQJZ/PuPJdN9K/sLN9sg9AraJqRi++xKgRhoPlQj8L4P59T++w6jfjMGmIRUzlA6H7WTz9myW+qxqVMdM7enbp8I9OQYl+FeFRnM2DB1Lp1N8Z5UJdTf0b40+iC0YP9+2gA0831AZBl6JKRqzo9VjHAyNEh53TjFFu9Vnzf4g5y2SDiQqydJArwzPmw22S1oSlNVVFidO/kX0T5nYpdVULK0IXGZi6Bugfhf+GMYU6bdS/cpwBEsOjVrlQwQ7n1cIQt7GILBBiiiFPezNUixBlc6J46zfdp72MiUaEZ7MswEbiztbl4/c8uMcM547uzPQ7PrNqahsdDXFKx+gZQ0ciYyDzgPNY4tnNbuy/GwvEXd8n/RVI8tbORilFH076Sj5W9wIXFJBt+DTaVDwMycbTEaSaKQu7qXFMofO6T7Bixcwnpq9bzTjTfpNqnZnc6HuajPzIGgByGjSg9RGHOlqZf1TFw1yky520dHgj82UciLNx1qq4gLbR556MiblkKUBW+5F0KlmlnbSXPGgNu5qrLzTOBoXbk62P7HnZpeKZUbpBdmodpg/lTLANl6QCO9p0KUN/ONlmNX2OTh8QfbrOTXAFwdxQ8qAh6ngDCFVbQ2Mlz/cPhbQo4JLzwD8SFOiH97gQtg2wtGI6nKNIfdqNvmhIcSqw==','2024-06-13 00:31:37','2024-06-13 00:31:37','hadesDbSvcUser@172.19.0.1',0),(110,28,'jobSchedulerEventConsumer_SECRET_KEY','7m0CWZU7zHiXmkAK5WRw+rXajrQCYdpM47ipstU8ZxU=','2024-06-13 07:47:14','2024-06-13 07:47:14','hadesDbSvcUser@172.19.0.1',0),(111,17,'os_REPORTING_MASTER_KEY','XvLZ5ggUb3gdB1c/nWsbonX1wNnCB/QU5e2NuTwVn8Ly2J65Mn2pS+XTV+ztS5hyg1pkAgInbVO3ioyvN4gTyJZfvjC8WMNXVHpYjfc3hGg8JNOKtqJ61t905+eXJbh5flbE6kOzR0nYmQ+NTSdm4A==','2024-06-13 11:29:00','2024-06-13 11:29:49','hadesDbSvcUser@172.19.0.1',0),(112,29,'sofieHygieneChecker_SECRET_KEY','cC2FEOT1Pg42E8gjE6jSu3/Gg2bCH8UJQ1wM0nedLNs=','2024-06-13 11:48:25','2024-06-13 11:48:25','hadesDbSvcUser@172.19.0.1',0),(113,29,'os_hygiene_db_creds','bmCXwMViHRHunRp4zJZYjUXptGhRsf2wmxyHlGv1r3nw91CD9zEukFn3qFT9XzZBukaqv65r4aNqqS4eZUMW5ouOi1/fMmepD3UwTmX1phAIRnEO5MVbPGlSqCEoGiNjmn6ChKIAvqv/HA8xRX6I09OooDMCgvBjO6IypreH3XYGlmo4J0EW4N9IDhqSLSby3Ud4N5qqLJLQIBmCG+TBunIJ3xs576WNhC7fDI70sr9q3HJniYhhdujjJw7xVd6jZk0F83Re9zU2wlo0ic3njttw/kB763E9Uz5ml2kcMwwsstuesYvSgGtZTlJvUrCaLvjwKWx18Shjae1cBh6LPAhf6gR4wj3a0oRjH6avVtKPfRfYPLdbb9QfnOto8eYfEJeZ8bQdo7cpBC0od4IEjGLxjXpnZnUFulxRGNde6FgqGKONjcxM93Brq2mWvMIL6ty46xmT2I1jIldI+J8ZqUa41Z3NDa3LTQFNRPWiKx+aeqHrCbJkXpRhumfkBpTaW2bYf3ZOPjtuhLNln6gCO9J+oIAIl6//o2kuSCtO4qj9za1hq3z6TdArgD6HiVEdle0CHt1DCRQ7iJMvWueVe7LjgBt/QQrnXruUJx3ARnMlvp76dtPwg4ApgYho+tcRcwUBGbQZdeBgc3vR8AfIeNShpn2pfDCzb6xedOY3HWyaoy3u31LH3R/ze/4U2AgQYvGNemdmdQW6XFEY117oWNg/IOugSNKAHkLWrUhA/rs2OMw88GzixsfbK3x0z21NnyKG7B82ABrO/iFuHvupffutkl+tnxaMwyXoWLKzN/g5E8XirLt077H24cz8wbBXy70E0GsT92Vs7MfHA6IxQPv4bE1AHP9Qk/bVxefp5LJLc9pXzBXjEWk1n3gmqGP/W8X8xVPArZYKTKymkEOfnEp8G9i1eaYQhEA4my/THeV39nCNKiUgIuZvpS1HzK3/Zk0F83Re9zU2wlo0ic3njkwEr8tkJj8ohAL6xxxflrlZnJw5txMsqZgabtMuymRA','2024-06-13 11:48:25','2024-06-13 11:48:25','hadesDbSvcUser@172.19.0.1',0),(114,30,'preflightHealer_SECRET_KEY','NjSju0dVOJpyYdlntZz9MmAt7fTC9n/lx10FqQtcyyw=','2024-06-13 11:55:45','2024-06-13 11:55:45','hadesDbSvcUser@172.19.0.1',0),(115,28,'os_MFG_FEED_S3_KEY','XvLZ5ggUb3gdB1c/nWsborxs8D74BUbgYlPBbY62/oBCY0aj4gkzpgPHI8CZq90fMpDWuiIbXy/OO3WRBF9eWsfbtPzAxOXWWOCxdy8zNpiU0lin0YEM/yUGaYeSOUsKPkgL+1bA3FmqUlUdcUMKWDMitanga5opXqykhbX73uXCFIiHPtcNf+4Ka85QKLinfr42DoRlJC/bXj6X50jPGQ==','2024-06-13 14:36:19','2024-06-13 14:36:19','hadesDbSvcUser@172.19.0.1',0),(116,28,'os_gcp_prod_kafka_broker_creds','1GkTwDOR+AWX9ukJsPXHPMO8LzN14HIy4QRug3bJbz/wUyJKqmbd3n2qOiC4d/q8ULeFvirz6LSZP3cvUQoZqCqqx8Tl3Jtp59CQlXGUGQhZnJw5txMsqZgabtMuymRA','2024-06-13 14:38:03','2024-06-13 14:38:03','hadesDbSvcUser@172.19.0.1',0),(117,26,'TVING_MOLOCO_STAG_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZJyJcDVdiNSzhoEZ8O0fhixUgjEy30xDLnjqvTbKgWkJC6ZCqiMsl2qe5GrIrUF8xa8rfe1aljfuvLxzuRxTadIb72Mk8w6iLcaiVPUsfAwcjBatX29bzh5VWObhYZUCdSO8uVMduncLW2sFOpDRFkFcV9dJYhsNRhu4XMq90ytoKb/p+e++FRGy3AsJgZJoMKVNFddbGSTlMPH6GRq4hbevNeixvVbnfecJpddRZRF9PFEonKElVEYdC74xXUURN','2024-06-14 07:26:52','2024-06-21 08:29:57','hadesDbSvcUser@172.19.0.1',0),(118,26,'TVING_STAG_MLC_TOKEN','aKDeaZBtXJCuFHJ89u1BL/DQtiloVGHCy0q6VRMRNqGBa+nok562XTOHGZ2dEZ9p/+Bw6Pq4V8GEs/gDgBqjeLNd4WdVb8/QLhwFQsPo4DVBszwMVw1+Iu8p1OsAiFAaDR++FIPlFVYjoQMKQZetAGbu9SxgZQ5fjpU83GZOr7ovpwaLxXN+cLruwA9STGYlcykUIW1Qin0XvPKZsxXQeN26xYGrlm3f59dV/XVjGh1OlORXra4yFslNlfMq//BtDnM0E90pS1QlwFYDotT69dYhhfMaqPr1P4MotztaKB0VBLG33eZfyJ/G1XiuGl3GeMLldPDMpiilZfwYRK8HzIMGOXPIbZJtd/dkbx5HZr8vsyLMpYt+rg0zIgyiDuXhsipd+tacKoNT3JqxXwNB0IFd2dKXMsGcBmlUUr1bX9VdIY9YhFLInrdHi/Y4JGpv4p8uoJ+mwQ9pUwA+mUFetG/Lwd9PyLzyMabVNxGyHR6+UjmRmqchDoLKHy/ds+Vcp6QF3JzEQvq6NdL79jt3PMGhru04sFD1uZJGCKuoZj2Fqdg/pTP6sJ+mR/xdDCG8+aMuiognFXZuO3qx5sS2ztdSmXVi+jcV94MujVnkhKLmKbbUtLYhYzNZ8jBg+fj/QBEbAQpBSD3LdTHozB7zE2aK/fjYhcJZBQgJXSYV1H+4RbHeGwppdljEHTc8tIP1x7Ah+XEHHfb0iHCsWvuGfiVtpoAnxJ6fl2r82ifrcagD5JqjYCNRe/bqT/A9PJ/6QJ/cOaJYDcBxHf7RWL0+BlNLEuGbNn1odZoopruO1Hxfq5c60Y9v6nlJ3sItq8AECpl58AKzxcu9JHFwd6SrCQ==','2024-06-14 07:27:47','2025-03-19 19:00:39','hadesDbSvcUser@172.19.0.1',0),(119,26,'TVING_QA_MOLOCO_STAG_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZwuGmSVbGCjQyJotS7KxlB2kg729IMl3YRCTfNrgMiSYsEn5yYSECf6/+FX0KaiWNbucJPtSpp5VFgujlN9xl8wEhJG/XSN3k0m5lGasVNHwzqdtFu4Y9/ry/AeKtq6z+/WhRQ6T4SN2BzMtflbqKqw6zpXKXF4iUX08VQYifm5oeQhPGfTxO87G07NFo2KVdJ44p04CWoFPjIz0iXalvK3BVSjkTSeoyfTBvM57C4cN5/tth6+3Drdg2WxJVk6pm','2024-06-14 13:26:02','2024-06-14 13:26:02','hadesDbSvcUser@172.19.0.1',0),(120,26,'TVING_QA_STAG_MLC_TOKEN','aKDeaZBtXJCuFHJ89u1BL/DQtiloVGHCy0q6VRMRNqGBa+nok562XTOHGZ2dEZ9p/+Bw6Pq4V8GEs/gDgBqjeLNd4WdVb8/QLhwFQsPo4DXit+z2xk3wyZVsyfQwhgu8Ji1EWIVjSI1kin36wTXj2hLV8laERExkqvm7Fx0djesvpwaLxXN+cLruwA9STGYlCyizlCS1SnakFN/wxihSgiSvrHmSNH+zygyvRsgibxXi9bvZN/IOgEL8oJ1DccE1DnM0E90pS1QlwFYDotT69XDjPzRKC4SpCqwcHYJiKiiT4ShezDhywpadMCxjis6BsIBKBPHc1qtcAh95dbRBlUG5NVvuQC/NqQnUG3ElUgKf22Wz+eQYqBI+gD1JKoRdJkGEm/s+XV3aCwDDycRdOBy8rQkHRkUX0QgVyIaiQbkmZdWix+NUYuXIUHlTX1mDyBy4XtlWGW1o/tKnMgvmcWyWIpVDMbnHK7/4XBIhACrnq8ko0HJCe8rH8WM7up/Af4utKDKkmXTqAPjvspc9P2TjQyDj4pirrTvpwqK20BKeyH3pidte5ZMb0oFCyUR5hFN74PH7S0x7L9CZMJDNJnH4c4Om/7qHGDmPw9pL8WL/sGJNwhAEf4By2gQfSo0zVL4rbsvg+Wksz29w1iwFSX/QxWYKiCnRYSnNcMuXw4GwfNx5y7eqmZ5PHpi9RXfSBxxNb4I5QOuY/z2GSC80jSoaCmZhGsWskoJcAq9iQmKk3q+cfbFYbzRLdw6jGxS8ggOp4qbpMv1yoKRiGd3UoOFdjkqWGVIemwrmu77MG/QsKdCdSC6nKbVqgEx9NiFh','2024-06-14 13:26:49','2025-03-10 19:00:49','hadesDbSvcUser@172.19.0.1',0),(121,31,'accountUpdateEventConsumer_SECRET_KEY','s6l6JLQuw6hQF4mvjhQPjupFkcuA9lnv1QoTPmS3awQ=','2024-06-21 10:57:39','2024-06-21 10:57:39','hadesDbSvcUser@172.19.0.1',0),(122,31,'os_gcp_prod_kafka_broker_creds','1GkTwDOR+AWX9ukJsPXHPMO8LzN14HIy4QRug3bJbz/wUyJKqmbd3n2qOiC4d/q8ULeFvirz6LSZP3cvUQoZqCqqx8Tl3Jtp59CQlXGUGQhZnJw5txMsqZgabtMuymRA','2024-06-21 10:58:40','2024-06-21 10:58:40','hadesDbSvcUser@172.19.0.1',0),(123,32,'thirdPartyReportProject_SECRET_KEY','H9/pX/l5PM49yjwvGulA23i1yT4FyyQ3Bo2EKiqDLqs=','2024-06-21 11:19:35','2024-06-21 11:19:35','hadesDbSvcUser@172.19.0.1',0),(124,32,'os_athenaOffline','XvLZ5ggUb3gdB1c/nWsborxs8D74BUbgYlPBbY62/oBCY0aj4gkzpgPHI8CZq90fMpDWuiIbXy/OO3WRBF9eWsfbtPzAxOXWWOCxdy8zNpiU0lin0YEM/yUGaYeSOUsKzYonSSveHH1PGFl95ILLMf6fqwNaQanRn1wIlDfL2RcWA7Gz+9sBp5g3hYLwxCwyyEWaOUiLKsxg0PwI+lg6dzD7wBMWIZh0S7RpcqjBRP5/FMW9ZCl2Y4nF5S/uTmPDFjEDcvz/4E0hN5JLHK5oV59Qg1VNjlYCif5PT3xDVWZmtO+zH2NE+QvjbTEkHOpP3HEgxL/IM3JkMpPRbz7RruA0GhZAUIx86JMvTGjxPQDOy8OGcevUpr4WzaYPx4Fo8GjqYiDFEX+GLApEcqcZz3RmseCEw2FYknDVcGCBnHICD86jTcV+yCrtmgzfZH3Wq56vHkF3AXj+kup46OcIhg==','2024-06-21 11:19:35','2024-06-21 13:43:07','hadesDbSvcUser@172.19.0.1',0),(125,32,'os_REPORTING_MASTER_KEY','XvLZ5ggUb3gdB1c/nWsborxs8D74BUbgYlPBbY62/oBCY0aj4gkzpgPHI8CZq90fMpDWuiIbXy/OO3WRBF9eWsfbtPzAxOXWWOCxdy8zNpiU0lin0YEM/yUGaYeSOUsKzYonSSveHH1PGFl95ILLMf6fqwNaQanRn1wIlDfL2RcWA7Gz+9sBp5g3hYLwxCwyyEWaOUiLKsxg0PwI+lg6dzD7wBMWIZh0S7RpcqjBRP5/FMW9ZCl2Y4nF5S/uTmPDFjEDcvz/4E0hN5JLHK5oV59Qg1VNjlYCif5PT3xDVWZmtO+zH2NE+QvjbTEkHOpP3HEgxL/IM3JkMpPRbz7RruA0GhZAUIx86JMvTGjxPQDOy8OGcevUpr4WzaYPx4Fo8GjqYiDFEX+GLApEcqcZz3RmseCEw2FYknDVcGCBnHICD86jTcV+yCrtmgzfZH3Wq56vHkF3AXj+kup46OcIhg==','2024-06-21 11:20:21','2024-06-21 13:42:25','hadesDbSvcUser@172.19.0.1',0),(126,33,'irisJobGenerator_SECRET_KEY','IUjlrvPopd8f3SJgeXO6xzfvbR+cjbWkyVr+7c1pOp8=','2024-06-21 13:07:59','2024-06-21 13:07:59','hadesDbSvcUser@172.19.0.1',0),(127,34,'irisOfflineApp_SECRET_KEY','ZSqcODn94L2NqkLTtSJYMX+Gk6AcBt6xDzqoRU+Oo8s=','2024-06-21 13:19:14','2024-06-21 13:19:14','hadesDbSvcUser@172.19.0.1',0),(128,34,'os_REPORTING_MASTER_KEY','XvLZ5ggUb3gdB1c/nWsborxs8D74BUbgYlPBbY62/oBCY0aj4gkzpgPHI8CZq90fMpDWuiIbXy/OO3WRBF9eWsfbtPzAxOXWWOCxdy8zNpiU0lin0YEM/yUGaYeSOUsKzYonSSveHH1PGFl95ILLMf6fqwNaQanRn1wIlDfL2RcWA7Gz+9sBp5g3hYLwxCwyyEWaOUiLKsxg0PwI+lg6dzD7wBMWIZh0S7RpcqjBRP5/FMW9ZCl2Y4nF5S/uTmPDFjEDcvz/4E0hN5JLHK5oV59Qg1VNjlYCif5PT3xDVWZmtO+zH2NE+QvjbTEkHOpP3HEgxL/IM3JkMpPRbz7RruA0GhZAUIx86JMvTGjxPQDOy8OGcevUpr4WzaYPx4Fo8GjqYiDFEX+GLApEcqcZz3RmseCEw2FYknDVcGCBnHICD86jTcV+yCrtmgzfZH3Wq56vHkF3AXj+kup46OcIhg==','2024-06-21 13:39:41','2024-06-21 13:41:10','hadesDbSvcUser@172.19.0.1',0),(129,32,'TVING_MOLOCO_STAG_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZJyJcDVdiNSzhoEZ8O0fhixUgjEy30xDLnjqvTbKgWkJC6ZCqiMsl2qe5GrIrUF8xa8rfe1aljfuvLxzuRxTadIb72Mk8w6iLcaiVPUsfAwcjBatX29bzh5VWObhYZUCdSO8uVMduncLW2sFOpDRFkFcV9dJYhsNRhu4XMq90ytoKb/p+e++FRGy3AsJgZJoMKVNFddbGSTlMPH6GRq4hbevNeixvVbnfecJpddRZRF9PFEonKElVEYdC74xXUURN','2024-06-21 13:45:53','2024-06-25 16:21:42','hadesDbSvcUser@172.19.0.1',0),(130,32,'TVING_STAG_MLC_TOKEN','x8uHIVTpqMciGFW7z7mb+CkZ2Cy4bRyr5zQsA9vf0agppyN0VPTHZgJKpnBJ8TPi/q+PKoGWhtYz+FRtBmMXewwPnGjVvNz1EAKfgpQ5pbvtWQz7939i8CzorGn5lPaqT+w90o82PpU1daPqGKSVN3J5MPMSknzVc7+USV3keHEhQsMZGxBxAQXvT0R8qrhJLcGIYxMHOgzwL4s//8+XAbmAI7hqoHJZlC2GmaKJIXJECyWrhvLtd+DQvYtLteMTGH6WHl5yzh3gOhRbXrJTS9b75Zcbu6OnaFffjo7ai6a9SZOZIaCnjNjK2efA1LAOe2ihOI+1edYWnmOEgfMZ8rW7FSN7XlO0/8wCxSpTIDHemAvg1FR60DpjARbSbvHvHdQCWqNR+U1DYocsvMF482VZtK1394aotISGWMicwJ1I9wfl6gfhhpp8KqHh6nx0bnCvQPrcmIm6UqEKjUapzjvrhxR9G99lxLdHDoj9hlxiCJFEjDOJAi/CL0+9LEGkX6gHHSWEw3e/dP1Nfn4fKfdEA4Kl/RZ4cpTDU7sUgH20VjAS5k+x8VOq+d7a6Xa3r/OFexQHA3+Qa9zw3dCpof/bM7a/7YQzQ19Bl69+CRK8RPId0kb/1Aqvs4guWm/znqXZMnEAcni1JY9ZLgOCphPiaMhr6hx0ujde+pBiEWp7fTfdz3c/g06VJUyhJzZk/lsrYgawxej6SIgbFOQTi6SmHeKJdFts+2O5ky5BqnpJUT4hmDwPHOZV7QDmJht6sFGyyzZE/28cqq8x2O2wuhtKB1VC5Qp2CaTcIsZ5DJcC2oKvCutUoK9FyqFQkfq4','2024-06-21 13:47:45','2025-05-25 07:11:45','hadesDbSvcUser@172.19.0.1',0),(131,35,'taggingDataEtl_SECRET_KEY','wb831mguM76BybStiFvlnKXThkUzeOfFu61a6hydvFs=','2024-06-23 08:16:05','2024-06-23 08:16:05','hadesDbSvcUser@172.19.0.1',0),(132,35,'os_MONGO_CREDENTIALS_TAGGING','LQOBMgmWdWyIRjE2T0yrisI30vYOlNBDH9xRbbZ8cfCSvbKhNAU2dTOJ1XWNsm1Cgp+531ynJQOKc0PHQBipo8IM3ui31igWaqWbF9OdPdG/BsrLFDpo7AHvEdPaV6bjF+lB+qk9vJn2NzDen0Fl+q8rgFmdaZGOVcMAKFDpVUBhoanTcx1jIyimWmho2fEv','2024-06-23 08:16:50','2024-06-23 10:26:22','hadesDbSvcUser@172.19.0.1',0),(133,35,'s3_credentials','XvLZ5ggUb3gdB1c/nWsboq+NlDdUK1tEYLIGHs2fUV4bJxFgTiuhE2PNeIPOJ1sqVCKbao/cTV8a6XYGkSnKoVtSpzyC3qXgoocXIyrNHlL8DT61jnDLJcTk6oTLk62+bjUr71g/Vew6Kce+Q3g2mg==','2024-06-23 10:21:15','2024-06-23 10:21:15','hadesDbSvcUser@172.19.0.1',0),(134,36,'molocoOmsTaggingFlow_SECRET_KEY','biZPb/d6gPJRKwpECpBcooxqsgspJcdUkwMCjCig8Aw=','2024-06-23 14:19:35','2024-06-23 14:19:35','hadesDbSvcUser@172.19.0.1',0),(135,37,'hadesEntityMappingStaging2_SECRET_KEY','zO2vXEw7Sbc3fuf4NJYz7+VAOmbbygCmuQ/NOZCYuYw=','2024-06-24 11:46:46','2024-06-24 11:46:46','hadesDbSvcUser@172.19.0.1',0),(136,37,'os_REPORTING_MASTER_KEY','XvLZ5ggUb3gdB1c/nWsborxs8D74BUbgYlPBbY62/oBCY0aj4gkzpgPHI8CZq90fMpDWuiIbXy/OO3WRBF9eWsfbtPzAxOXWWOCxdy8zNpiU0lin0YEM/yUGaYeSOUsKzYonSSveHH1PGFl95ILLMf6fqwNaQanRn1wIlDfL2RcWA7Gz+9sBp5g3hYLwxCwyyEWaOUiLKsxg0PwI+lg6dzD7wBMWIZh0S7RpcqjBRP5/FMW9ZCl2Y4nF5S/uTmPDFjEDcvz/4E0hN5JLHK5oV59Qg1VNjlYCif5PT3xDVWZmtO+zH2NE+QvjbTEkHOpP3HEgxL/IM3JkMpPRbz7RruA0GhZAUIx86JMvTGjxPQDOy8OGcevUpr4WzaYPx4Fo8GjqYiDFEX+GLApEcqcZz3RmseCEw2FYknDVcGCBnHICD86jTcV+yCrtmgzfZH3Wq56vHkF3AXj+kup46OcIhg==','2024-06-24 11:47:16','2024-06-24 11:47:16','hadesDbSvcUser@172.19.0.1',0),(137,37,'HADES_FETCH_KEY_STAGING_2','kzpDs69/ocwGrKnbkHib4akWTM+sTgV3zRSR5cDLpfaCEBVwjE4fcOC2TsIhLHBesw/8BGoFYXF2ssm3wlHfpVSZlo4gLCk6afvSb5al2cMLoSnLFA/DIkQmGanH5RpEv/e+T7W1oauuLHUTZK/TjOFBuexzrtyDq4lG/+agnKU6Rs+sCNce7+9BViGW7krzmwXa++q4yhpQ9vEsWG6dkVmcnDm3EyypmBpu0y7KZEA=','2024-06-24 12:43:48','2024-06-24 12:50:08','hadesDbSvcUser@172.19.0.1',0),(138,38,'molocoOmsTaggingStaging2Flow_SECRET_KEY','g3iDr7A9RF0BXql1CJ9SAwh34tMCWfQJNzeJiKU737k=','2024-06-25 06:00:30','2024-06-25 06:00:30','hadesDbSvcUser@172.19.0.1',0),(139,38,'os_REPORTING_MASTER_KEY','XvLZ5ggUb3gdB1c/nWsborxs8D74BUbgYlPBbY62/oBCY0aj4gkzpgPHI8CZq90fMpDWuiIbXy/OO3WRBF9eWsfbtPzAxOXWWOCxdy8zNpiU0lin0YEM/yUGaYeSOUsKzYonSSveHH1PGFl95ILLMf6fqwNaQanRn1wIlDfL2RcWA7Gz+9sBp5g3hYLwxCwyyEWaOUiLKsxg0PwI+lg6dzD7wBMWIZh0S7RpcqjBRP5/FMW9ZCl2Y4nF5S/uTmPDFjEDcvz/4E0hN5JLHK5oV59Qg1VNjlYCif5PT3xDVWZmtO+zH2NE+QvjbTEkHOpP3HEgxL/IM3JkMpPRbz7RruA0GhZAUIx86JMvTGjxPQDOy8OGcevUpr4WzaYPx4Fo8GjqYiDFEX+GLApEcqcZz3RmseCEw2FYknDVcGCBnHICD86jTcV+yCrtmgzfZH3Wq56vHkF3AXj+kup46OcIhg==','2024-06-25 06:00:59','2024-06-25 06:00:59','hadesDbSvcUser@172.19.0.1',0),(140,39,'taggingDataStaging2Etl_SECRET_KEY','VZdjCpYQyRI9nBthOyDRMlBTOCFlVQHrRv4CL8GgAds=','2024-06-25 06:05:22','2024-06-25 06:05:22','hadesDbSvcUser@172.19.0.1',0),(141,39,'os_MONGO_CREDENTIALS_TAGGING','LQOBMgmWdWyIRjE2T0yrisI30vYOlNBDH9xRbbZ8cfCSvbKhNAU2dTOJ1XWNsm1Cgp+531ynJQOKc0PHQBipo8IM3ui31igWaqWbF9OdPdG/BsrLFDpo7AHvEdPaV6bjF+lB+qk9vJn2NzDen0Fl+q8rgFmdaZGOVcMAKFDpVUBhoanTcx1jIyimWmho2fEv','2024-06-25 06:05:23','2024-06-25 06:05:23','hadesDbSvcUser@172.19.0.1',0),(142,39,'s3_credentials','XvLZ5ggUb3gdB1c/nWsboq+NlDdUK1tEYLIGHs2fUV4bJxFgTiuhE2PNeIPOJ1sqVCKbao/cTV8a6XYGkSnKoVtSpzyC3qXgoocXIyrNHlL8DT61jnDLJcTk6oTLk62+bjUr71g/Vew6Kce+Q3g2mg==','2024-06-25 06:06:40','2024-06-25 06:06:40','hadesDbSvcUser@172.19.0.1',0),(143,40,'athenaClientDetailsPushDaemonStaging2_SECRET_KEY','/w6VKyvI25oHQOtY65s1Q8i40tMT+dSO8O9PznRfCJA=','2024-06-26 17:17:50','2024-06-26 17:17:50','hadesDbSvcUser@172.19.0.1',0),(144,15,'METABASE_CREDS_KEY','2DMRbySayFi/ljbRB41hIozSRixZ6uzvWd7JA6xpyYHEOHsahttvYorv6OrpC+hod5vGgSJxdaBvDD2tH0WvZHWgVEf08Zb5LLHeCFZLkwU/RZ/Tum+b/Uvx+tgIDod38wowPBOXa7ouXQuViHyrVN7ZoNlLjb1ygFgjaGbrx4MpjIQObhFu4E4C1k8FCy/K','2024-06-27 09:20:40','2025-05-26 13:01:11','hadesDbSvcUser@172.19.0.1',0),(145,14,'GCP_BQ_KAM_CREDENTIALS','ghaTKLCEHMTQ8+YM8kILG2n983+rq7k4edeKaI/dDh0USeOUZKxtRByXvI3P7fxWSNVLbEp/+gy4PhHVo+n9DgwQ4NtUKJd0XN0eGaITPG+9qMHu7ZX1ZSlslhu1nEpHiGDpJf/Qm/Ju4+FeOlozOORizawu4saTPfVKG2GB1eU//ltD+xnTXwnYxn9+G+akJdLrFAfUn5pT+orURezs2nbrp9WTBahe+B1f715A/yGmyEuJAsKnceMX/4hmZxdyDMrSLccboSQRqf0wBSKUycEu8FMleEDvAoDdJaMN+Mzox7S8WTlKwAK2Qh019leWeUlGijP6A5x9He35YHA6NxML/0pSEcaFXBoUg7m01tfu6tFAvrUSSvP7yWl/AuBsWorXTAloUhaB0pdFaddOf7JRUQ9hxngc2vNviejrvUOsjEa2KXzcSk11ckb085rmteQoQwsBHaeqoWlByh/mwJa0pb026Ao4BhIq2Ac2vEoYw1iyMB4ilKXtq4hKun/+W6rG1qBoiB8QkBb0St2jjHb10MtkE49Sly/l3327Iq9GZGKvvFmPdEdbvbSRnvGL9qG7XHXHhzecdiRtXyivxk4LpZba7WmCw4zZmU3P+2lbcjbGZ6W8GShofRuP5DNjJ87iFuknsqofOmDBk82ciY919v2j071UruuuQJ+bjEy85Am2Xjxj261DRguUBy35fLbONXJ7CJjxHCLdFBhS/Lb9OxFvExEE2oCvpc2Bf/ybxVn5I+WcqZ1o/3w+knw3nKm1hbWmxULWbHzEQLJK7IiHHxDwUFJZwrnfWqy1m/tK/Jby+yEdPpxnmVjzPOdkAJWhxZQbvbAQyhUCLChNI9avx1WFycP3dxP4Bv+wlh1FJUzxDmI4FmtjCQv+urwQqmhgHwEVTB2MNk592eXB2xs4yBhB0hihQmnYXZs4DLTwA3yuPdbWB4/xt09s21TsV4PkzTrL/5LN7m36UD8evxgJ8DErfGcnGnDkvrYbmgwSGFvdEu+qTKxY4bocoyj/HNZ12H9VhPmwznv3zC3SRDgs6z+CI3aNqKc/T7hmrs2oiFJHNC/uFU20RdRH2MB4M011vjq15TK3SNKtsVUyHNyqd0t4Ivtr2PvfXFm9TK15bBjZ4k+GKJ/cJfvqmHVPWDYF8aTGYmBNhp3ltOhQ1gw9FEfoNPu/QixdiT7ZVlMzNUll9N1G0kVk2TI1S3uqRcnDejW2pWKU3V0E1tXNBfx5z/DNLmYkZ/CaRA6WhkE01myYex4nylsY0Mb46yYHx6xvDZceF0UW5DPdqFg+Z8jSyvjbAQ/1IDREJX67s1OHOHqn9qclB1Jk4a6LhEvEV6NlPb1qNYs1MCUp5Qi/ISqd5QajNF0l1sD1MyaCNqe9A6tPWWIsxF9yUBl0OB72YXe0d4H190R8Ui9kpsUY3izbPE1P2/Q+ma5ZVfFuet4FdvxoR6C1tvGEJy5hgOYzSMW+EQL5Z8n7PY1HnXwcTRB6JG6awIDnnyqQu23b/HZjSgVus4kyYEYeE8FSA6BKa9KqF/WrKnp1xzYX88aXO5v0cEve0FByF5RH9ZoRM3e3wS51so1D87xr1Cod6ewF5ujQ6/35d7JrluBgDRRS+/SIrpJO96Bqvqeqq1cWOqLIlVbCfBt10VFfhWUjwrW9Yyu+DgBBbgpCDXP5o9bIVX+KcoDtj1J/c5yey57ZRnWZZ74YtlfBBiJ0eallFeXT6x4Owz/XbYruNiPsgMBJ/F3sSLspngRFmlfLtXP7bHx0jAFakM97TokOhZQyGEgw7VklIFylfH7BVVfCiCVhpGUZcs1D9fjq87KmjRtH/O4S/Te15ccbuZmTsr3Wdax6s2AFfDurOG5SSHoYa43iU0RqgSen7XK7ar5fUzHcdsvS0tK6xv9tblfzo9tqwL3SBn5ZzeM2uESWhJMNkwoc0Ori5bPidg2n3Gz9ZUV1uswsbX7d/BbuWYazLscmBjYzJjxvR6F1zA2ukxXPeEHpntA+OmvgGzZkZKuLGGCZP4Sluma9294BXRpQzFvJ0ikvww2tXUSs29eaYTWQnfjSdOjf9TbbaL5fUYJ+dUBSH7wvHiOjipI2Of5faqJyhHGlR+yaN6ux6fh8o0i/gQrzgj8zkenlJ9dGUDJYdJy/XniKXSYwiKuu+ee/Gp5Iq4zavFOJkWMesNQ4g2vDKQYTkATwKGtT1JqIxGyabcgkK/B7ZNNWqT/ZG6I6Fk49tWhMKrnIaQiSRpOhQzg9qDfA+oxK1lAtRlnFQJfPf4HhEZH3XZCI7Ucc7RrcBwRR/zMnOwyhtAdUCKBEC0Aj8sKsCz+UOomAymPFAThmTBQf6fACk1dXwlfg0djwRo3BjeQQsEbs/rnS1VwzGD7MBl/Swl9BLdUejMF2HJC/IzgfBRVS9BNZdxsjefktv4OW15GS9cvqBY7CdFeWxdv8MiBI9r2s2WKn4F6bg5jSpm3uIPVL+XB1wlC2o1q07wSI0cdnw0ND9L4N9x32W54LiJuyp+az2TgpLtp4kaWdMaOJma/4bxchEHUqiG2b/56QHqhAkYpitdQq3eDdv4+lUEePiLVS9rqvPzzQuPwTt9BqYyt5g+bS/4Yl1AsYgBkY/3Ntxc3ChcRrBOl/nvKgSIVqZ5paAo6HSqSRX9oefuvomfD9jXkpfRFGCTmd0hqQtoi27P5RNSm/uojKdvDONLZVjeG14FAuLcLNu+5rBmMZFK/XMh0Q4LwGy3o/nzn0sLWp+3+fvCK+E3++0qlhvubYhaSyj9MQT/cX4l3s/Ki2hGWz91smrMDhF/pNLZ5yeTIOG/U0WPqAsxup2kkL0iwsXkmxfJwZPIEiPplNhbRAwVrX0OiKmcxIgG+E5oXCGFtN1U5YPmNfSr3vWk65NGygsRch3vn9CvWF8excMjk0kbIZ28M4K8SbWC7cCny6LfjlnzuIKg6IZUUzJ77VKqOsZLaE1IxpQyj6rtm+BowuitW4fO5V1lopmRXKwn09UcZO4+F1F6X38J300HGN6P7JH6Lsav5vXf0zWVzUVStkMhL6psQaMDuK5He885y8mGtywuHsKga+WE41Xa04D5XqYwiLQjB5VP7wNwzoxIL4WeIWZ9/mrkRCGYz1P6HZdBg2zLXM8q7GgDzqFbNxpQ/Rpw==','2024-06-27 14:00:45','2024-06-27 14:23:57','hadesDbSvcUser@172.19.0.1',0),(146,32,'TVING_QA_MOLOCO_STAG_CREDS','/qSLWsbUilyW5dS36PtO+ICJzoF5vDXfJHc8x7U79TIhpOz8L+X74hxQDI2G1EcZwuGmSVbGCjQyJotS7KxlB2kg729IMl3YRCTfNrgMiSYsEn5yYSECf6/+FX0KaiWNbucJPtSpp5VFgujlN9xl8wEhJG/XSN3k0m5lGasVNHwzqdtFu4Y9/ry/AeKtq6z+/WhRQ6T4SN2BzMtflbqKqw6zpXKXF4iUX08VQYifm5oeQhPGfTxO87G07NFo2KVdJ44p04CWoFPjIz0iXalvK3BVSjkTSeoyfTBvM57C4cN5/tth6+3Drdg2WxJVk6pm','2024-06-28 12:31:13','2024-06-28 12:31:13','hadesDbSvcUser@172.19.0.1',0),(147,32,'TVING_QA_STAG_MLC_TOKEN','x8uHIVTpqMciGFW7z7mb+HXnqAszA6ZWneObtWU10BkppyN0VPTHZgJKpnBJ8TPi/q+PKoGWhtYz+FRtBmMXewwPnGjVvNz1EAKfgpQ5pbvtWQz7939i8CzorGn5lPaqT+w90o82PpU1daPqGKSVN3J5MPMSknzVc7+USV3keHEhQsMZGxBxAQXvT0R8qrhJLcGIYxMHOgzwL4s//8+XARRjuJ6/5Gzk9p7d/nH8xf79ZWp5bprZUl+Z4KXnZ3RmFn/H3ICA8y1Bo0eCuCKUI9b75Zcbu6OnaFffjo7ai6bS+88Q+0/HvvS9bPlg7UUhqCL+pe9gx5xRs8a5/cK9Lt/FzjbKh7DzMrkmEaFdk2uxNRE9BnhuA4ZqdKxMhrGRX75CcygQpjYmn5rot5+LaYuC4GdiPh24bG5rv2Iqn5CSPcN7iRIdK5n951DCjwu54jBk+UR4pf9oVLWt9U8xPuaLXJx7/qRwRf5JwgQI0J8eYFfICdoK/zFcqhBRQhPDpSuoIJsKmukmUZ6vPpHtFPW/6dDZa8uYZCQrprvjElLdq6UApetBah9yb8g02DhNCDmnIInbxYAm/xeTW9u3xx7nlPphLh1t8sUI7OTQ1X7Re92xQV1HHfJAlL+6VhYdDGKF+VssuP5BjxwPptDyZ0odBKNI7Ltd9qPqL/NBx7rx2KU8Lktxdx2E94U3pMnoFsTp3prrlQLm0zW3Oa1PmqcFICAXs+IBG+OjTo3T2rhrlxF5xoz6NLn6ZWvqhX2b0ByAO2jpw4rkdhNn5h0nXlbP++ka2Ge7/flLWNfelN6zUVRE/kzI2SxGRp7/QBEZ','2024-06-28 12:33:16','2025-05-25 07:11:45','hadesDbSvcUser@172.19.0.1',0),(148,14,'MYSQL_OMS_OS_PACKAGE_DB_KAM','Ia6VK3fqCgayAFLLGvu6sMZjlOb1WIUBrI5/8BkZk2Q1gePaTFhWnyawCt2fLDp2VJmWjiAsKTpp+9JvlqXZwwuhKcsUD8MiRCYZqcflGkS/975PtbWhq64sdRNkr9OM4UG57HOu3IOriUb/5qCcpevP7FS0fl7VHk8qOnXBSqg1Ww5gS5CaDRFR7gaftfcc3K9Scm0HpATzNnTXm8IxQWZNBfN0Xvc1NsJaNInN545B+yKsn0I/v7nc5Uumg3KIVyoVpeBktYNK5+Gm5jJwZ0PjfXdCBC4uYrA5DJlqaOiPxqWZvHxrcqMtAIKJ5W5/41G7J67Y1lxQU6p90VGHGw==','2024-07-04 12:32:47','2024-07-04 12:32:47','hadesDbSvcUser@172.19.0.1',0),(149,21,'mongo_comments_creds_staging_2','KUjQnV9M2xVeM2Y/K3QsKdacZZ61EJ4TkyeP9bFHHjxV7Ut9BG9dZcn6K4YMOJjZYDJbHu6ViPaRhXyVWhsIwC/bkjzcyQ0oKgwOIRgASsdcDhAhBbSD8UBEsMO2U9G+ao/yoQjo2kSnm4t/3B/TjjaEhEhQR7h0iWZD1bhjvDc=','2024-07-08 05:28:33','2024-07-08 05:37:24','hadesDbSvcUser@172.19.0.1',0),(150,12,'mongo_comments_creds_staging_2','KUjQnV9M2xVeM2Y/K3QsKdacZZ61EJ4TkyeP9bFHHjxU37fUN+McRsFtcuvS40A8N1mmdG2+klygw74UyWERxJzCVbxufgFHU6NmvesxymkP6JTTZCo1QKapAGJiz8/Cw8usMqu7OrYu2GAvmLIJGg==','2024-07-08 08:24:55','2024-07-08 08:41:28','hadesDbSvcUser@172.19.0.1',0),(151,24,'mongo_comments_creds_staging_2','KUjQnV9M2xVeM2Y/K3QsKdacZZ61EJ4TkyeP9bFHHjxU37fUN+McRsFtcuvS40A8N1mmdG2+klygw74UyWERxJzCVbxufgFHU6NmvesxymkP6JTTZCo1QKapAGJiz8/Cw8usMqu7OrYu2GAvmLIJGg==','2024-07-09 09:13:29','2024-07-09 09:13:29','hadesDbSvcUser@172.19.0.1',0),(152,12,'os_shops_DEV_BUCKET_S3_CREDS','8qQUs0vhaVVUX5EWaVuKdLVEzvK/t1AT32f1hVsUsipXpl9sEDzU7GpfevkL327wyRNpcvvHFo7Ya52ZlgOcbSou3F/l0xbI/stORYzjcJfuupklYsY/yJhk60LBpu2naVLH4CFbdouKY9y7o5jMShE49l6hupjdysvhQXJzCWALET3jbONRynXuJmVKrqDl5DcGwafwd1TiLo3T1rnrp4dbkYgBq3FpN2C81XGFkOmrWDylM5hMnJfhbU8XyKC2','2024-07-10 05:56:22','2024-07-10 05:56:22','hadesDbSvcUser@172.19.0.1',0),(153,12,'METABASE_CREDS_KEY','2DMRbySayFi/ljbRB41hIozSRixZ6uzvWd7JA6xpyYHEOHsahttvYorv6OrpC+hod5vGgSJxdaBvDD2tH0WvZEi/Cd3t/JvLQ9HU36hzF8A/RZ/Tum+b/Uvx+tgIDod3bVg99ZHZvBbtNmgQK8z5bxNBdzOcPuxuNvE7LxbB7JtNL1sM8KfbtFU1VNBvKood','2024-07-10 08:50:25','2024-09-17 13:18:50','hadesDbSvcUser@172.19.0.1',0),(154,12,'os_athenaOffline','XvLZ5ggUb3gdB1c/nWsbonX1wNnCB/QU5e2NuTwVn8Ly2J65Mn2pS+XTV+ztS5hyg1pkAgInbVO3ioyvN4gTyJZfvjC8WMNXVHpYjfc3hGg8JNOKtqJ61t905+eXJbh5flbE6kOzR0nYmQ+NTSdm4A==','2024-07-17 11:43:21','2024-07-17 11:43:21','hadesDbSvcUser@172.19.0.1',0),(155,12,'os_REPORTING_MASTER_KEY','XvLZ5ggUb3gdB1c/nWsborxs8D74BUbgYlPBbY62/oBCY0aj4gkzpgPHI8CZq90fMpDWuiIbXy/OO3WRBF9eWsfbtPzAxOXWWOCxdy8zNpiU0lin0YEM/yUGaYeSOUsKzYonSSveHH1PGFl95ILLMf6fqwNaQanRn1wIlDfL2RcWA7Gz+9sBp5g3hYLwxCwyyEWaOUiLKsxg0PwI+lg6dzD7wBMWIZh0S7RpcqjBRP5/FMW9ZCl2Y4nF5S/uTmPDFjEDcvz/4E0hN5JLHK5oV59Qg1VNjlYCif5PT3xDVWZmtO+zH2NE+QvjbTEkHOpP3HEgxL/IM3JkMpPRbz7RruA0GhZAUIx86JMvTGjxPQDOy8OGcevUpr4WzaYPx4Fo8GjqYiDFEX+GLApEcqcZz3RmseCEw2FYknDVcGCBnHICD86jTcV+yCrtmgzfZH3Wq56vHkF3AXj+kup46OcIhg==','2024-07-17 11:44:54','2024-07-17 11:44:54','hadesDbSvcUser@172.19.0.1',0),(156,12,'OS_MYSQL_CREDENTIALS_AYUSH','Ia6VK3fqCgayAFLLGvu6sOf+z1hTwTXsk9Pdrp6UpmB3QDVNvXljBAFSLoOfcBG/CZ6A9gME/wsngI6timMyXJgFgSeAQsqatW1Y6F08TXqUqrKcUV/cTNslVDxhMn7gLV7c+lGmb1KU3l7BfU9C8CY45XfclGtx2WqOqVLAAbuNEx2z6Osah3LcScylNwNFkFszSDmrXxeIF3zrkuvqjobOhdotNrTHEYwiWwZgZm5+HqLWpdKmDP0T/RpQtAKtOC4jKPZVccqb/4oUvAVAOihXptKb0nKGBQwdLQrDqJapwE13xT0pPsEn3qDCU/91ijQDvQMXIWq6MgCwi/u2pG6zpnPWM9iLPldIatEsIpV8b+h76tT32winKrrZCTnaFFz5OV8Y+OB/Jh7ZG9r5JyhBDveyaiHCk7kRpKERIqiN9Q8XxCV7IMEPqRUUmvoS','2024-07-31 10:54:36','2024-07-31 10:56:50','hadesDbSvcUser@172.19.0.1',0),(157,14,'MYSQL_OMS_HADES_DB_KAM','kzpDs69/ocwGrKnbkHib4dmo8dQjTb1qNg/cwE3DJ8rmFSMJ77U/8WO3+4+E6FR1nFqLhyt2j22J+IQpSM7OO27NQN8jLFbiyMY9/cotRR0qilrFWPcadMjJeVao8iD+nyQZkz2Do4JUCMhuSpPdGjA8L/I3Sknq/oGUQW0tXKnyy/ZyuZfUOhwGdBkHWug+ZwnKCF7VGS65LaisgepKNxYgW5WoowQh8wAIJmJPvf+sTV0TBLfvh7DcP4bQFBI6LJfainyaMLS70zEXjRQQTlZOEbF0mPw3ooQfecfusG56/k0T8GDd2ApvcMLj8k+VXVYrXyPhXILtgvp6GKG54g==','2024-09-09 11:50:06','2024-09-09 11:50:06','hadesDbSvcUser@172.19.0.1',0),(158,12,'OS_TEST_MYSQL_CREDENTIALS_RS','eIs8/8AYOjunaadBTCPiv5qsKmVOx6jpM8hRnz4CUmPdb/eFJDpa+nUX9dg9pDyw1rhwAuIZVjrZEnGhWBxRb2xMxqKuXoNtwgqXPormgm/UMhhpkUomDdor2rOjsKk24aj2T8yk4GFwaQOmuyUnKtNGZNZDgQltNV38/U8GXJs1d981trOmRFjSx7SK1CXpm0C0BhPEwK2vp9n4VhE6pYaIVconHVUNICtoym0yTpMdxAQNRNKIcWZsTxmOsDr5WZycObcTLKmYGm7TLspkQA==','2024-09-10 05:07:40','2024-09-10 05:07:40','hadesDbSvcUser@172.19.0.1',0),(159,12,'MONGO_COMMENTS_DB_AYUSH','uK9H0Qe+TYCgKquq3ez7sQWpnFeX0ECsSdYVORCJg/WJJlsWZv59zowGKOHqv3qBejOgotkL/+/BMOFaIaLRTkE1PTsQxAUW/xpIz9ZzfFJFevUnwsTCJ52/rB7H/Qbcxtmw1VIla9/Svwxd0m+EFA==','2024-09-20 04:33:49','2024-09-20 04:33:49','hadesDbSvcUser@172.19.0.1',0),(160,12,'OS_PACKAGE_DB_PROC_KEY','Ia6VK3fqCgayAFLLGvu6sMZjlOb1WIUBrI5/8BkZk2Q1gePaTFhWnyawCt2fLDp2+Q0zgWGcP18+ih6qtsg/2pXuzAHUyTMI7opSehnBl00yM9Ip0JFP8l0vgCppYvj3XVYrXyPhXILtgvp6GKG54g==','2024-09-23 15:19:41','2024-09-23 15:19:41','hadesDbSvcUser@172.19.0.1',0),(161,12,'OS_PACKAGE_DB_PROC_KEY_LOCAL','Ia6VK3fqCgayAFLLGvu6sMZjlOb1WIUBrI5/8BkZk2Q1gePaTFhWnyawCt2fLDp2+Q0zgWGcP18+ih6qtsg/2pXuzAHUyTMI7opSehnBl00yM9Ip0JFP8l0vgCppYvj3XVYrXyPhXILtgvp6GKG54g==','2024-09-24 04:10:24','2024-09-24 04:10:24','hadesDbSvcUser@172.19.0.1',0),(162,41,'OS_DB_CLIENT_SECRET_KEY','RNbr0Fl1/A/cGAt7ioaf1wALHJ8p6Q6t/OoKxFtjIlg=','2024-09-26 05:47:21','2024-09-26 05:47:21','hadesDbSvcUser@172.19.0.1',0),(163,41,'os_package_db','7pBZlBWW2K37Y6kfLt3R5os6hpI3yo4Zr394z9zIm9nTJTiTMiCQTHDuQZ7mhwMMEFPgioaNuNDhmSk9ePJ72rvWbwsTFWuhMGGTxmBvAbxPYpxcQVNfvy2kg9iTtEMuQlOOEdH+9eZO9HGP5JJBm1dDalcJcjW60taiIM2h71kdl7LwP8xm+nZYGVCghzAF+CBdw33mMkQI7bWLt8wBVA==','2024-09-26 05:47:21','2024-09-26 05:47:21','hadesDbSvcUser@172.19.0.1',0),(164,24,'OS_PACKAGE_DB_PROC_KEY','Ia6VK3fqCgayAFLLGvu6sMZjlOb1WIUBrI5/8BkZk2QBWeK9XI7ApoHYxLlTlKgG8+Th3yUCWaMbrKIKz6c+Pqz4wGzcE+fD3grTzaXAS39IoGzELndqZuKvWh+NyBd8YCLdyALHU1tQjmwukOLQqy9TTCT49j0r66n3EddYxKM=','2024-09-27 08:35:53','2024-09-27 08:35:53','hadesDbSvcUser@172.19.0.1',0),(165,12,'os_gcp_prod_kafka_broker_creds','1GkTwDOR+AWX9ukJsPXHPMO8LzN14HIy4QRug3bJbz/wUyJKqmbd3n2qOiC4d/q8ULeFvirz6LSZP3cvUQoZqCqqx8Tl3Jtp59CQlXGUGQhZnJw5txMsqZgabtMuymRA','2024-10-07 10:18:06','2024-10-07 10:18:06','hadesDbSvcUser@172.19.0.1',0),(166,12,'OS_TEST_MYSQL_CREDENTIALS_RS_AYUSH_LOCAL','eIs8/8AYOjunaadBTCPiv5qsKmVOx6jpM8hRnz4CUmP3LEd7n9WWSEqBJn/gpbqiW+Kdd6KHQjd1jfIFoMk9FMesoUPP9UUT4IKPt+qYFlZUo6cONVXRAueVe2cqLYH2/c2tYat8+k3QK4A+h4lRHaBZpxzZgUzMmJ/McA9yqIlKIXmzzGUX+7yFi4kAiBXHa4OpOThHXoFE0Golc+WPuVYfUTX1I1BBLwyn2fUGmjRumEIyr9mDjQAHkSadt45O','2024-11-08 10:04:28','2024-11-08 10:04:53','hadesDbSvcUser@172.19.0.1',0),(167,12,'os_package_db','cTYysuC0wupR5ot6oKQkc4KIW3Vm+FLmb9b9Qoi+RyhMq/tS5gCD7svSTrx36QScwgze6LfWKBZqpZsX05090b8GyssUOmjsAe8R09pXpuPlRon/d6ZU/7DiR0vBg3ry7ilSPFRwW0PgKDSEFvUXmVyXf1mZQI7XHnuwm1w4KffDy6wyq7s6ti7YYC+Ysgka','2024-11-29 08:20:42','2024-11-29 08:22:57','hadesDbSvcUser@172.19.0.1',0),(168,41,'os_package_db_prod','SpY9CkKoBPpK1O7p5EcGGDyHGUc4SdrJxFYaUHISBRNjZ5nCszfUqlRcUeqiN4FLTkTI42Ma6A2ajKz9ORpWPRpwqpFCCKwNw/WkVvkP2G3Csk5bbKCFTJWATfxbc7yIIEiM4V/ZiTUwgkNEaF6yy+ABh6g+bvVJXZhO9FxWoDwJK+VSdYQ2pDYW8Pz8alBN','2024-11-29 11:31:45','2024-11-29 11:31:45','hadesDbSvcUser@172.19.0.1',0),(169,42,'logsUploader_SECRET_KEY','y+juwTPC0IBIb53UrJzIzmDYNjLwqRc02wAEkReVFGM=','2024-12-10 05:25:13','2024-12-10 05:25:13','hadesDbSvcUser@172.19.0.1',0),(170,43,'onboardingScript_SECRET_KEY','bYr8HXyz7+fKQBU0EQ9gcaDGlG+FH9Ug/6EN5JDw/j8=','2025-04-30 08:52:57','2025-04-30 08:52:57','hadesDbSvcUser@172.19.0.1',0),(171,43,'agency_onboarding_creds','uUMl0tE7+T618d9i9VUtTJDlVDuCBO98ymW2xrhxR3RSnVt1zmV2SKIBTWm1J5815QF6aiLP/sqbYWOvXfbMKMscPl6YB/Q4oFCm66Hm17+++nRjvXNzpuF0DHu7KT8wO6fo3JVyn/EXL0tiJdTmhIs6hpI3yo4Zr394z9zIm9k/8uRcw4ljPJxIlMIRkXIvXnWjcQS9LMpVoGThLwyIYEpqphlKc7bsKb2rsvD06GoZfoTwOP5R1GI9tMtOcOEcbpep8QWfI2HDGicue0UDyQceSmpPTJ41xdd1oAhWA/0Oi9QwjY1stOl2p6oe6C33+T64z4W6PBuC1agSjcgUb+H7aqLkm5tqr8Sns7dQQFLcAt1J8gadwkjA80qWlLCvHXyZRYV7WZltDfjS8W2HiGW4hRzi+6QCFDsTipvLIGiD0uGjIeskqOdUwEPRe4FPbgUGgBD5UgFdIKcOhPOHr1QOUDOmPjpqdnzf8ZP1D740Q3j4pYuGXgeY3gBOPprXbqBjPNuuXDRtpmZR8u7G7BXrA4OH4i1ph1sjwEPMIKgmTasiy52ZF8cGt9gkMHBVAmrBkSDNRXqUNvvCHqdbkGFszOIQrPWDvdsl4b4vNqP7Ma/BzJuBEL8erZEvzeN3GX6E8Dj+UdRiPbTLTnDhHG6XqfEFnyNhwxonLntFA8kHHkpqT0yeNcXXdaAIVgP9DovUMI2NbLTpdqeqHugt97tjbbunTPCg9WrUinDuQR6FpX7pMjTkyGtvb7dzlKY3va7amxH0oA0hu2NeBFnuY9XP08JnCKJQpJvaagKul9Ful6nxBZ8jYcMaJy57RQPJBx5Kak9MnjXF13WgCFYD/Q6L1DCNjWy06Xanqh7oLfdjpqd90GjKLj+/LhRsjj09AqScIwNUGyL5M5fYVzUXHVqpwu+lvPZcjwhwwnNq7qXVz9PCZwiiUKSb2moCrpfRbpep8QWfI2HDGicue0UDyQceSmpPTJ41xdd1oAhWA/0Oi9QwjY1stOl2p6oe6C33Y6anfdBoyi4/vy4UbI49PalvKKwNYCYbsI2VOGhDkrIMquBgDAt527dg/I0Z3RgkehioG57XBa50UrQ3DRG7/h18mUWFe1mZbQ340vFth4hluIUc4vukAhQ7E4qbyyBog9LhoyHrJKjnVMBD0XuBT7wgW8eVC4Qvn9v9BwPNfPma0oLNY1BvzzBYFo5l6Ogt/7EKxixc1q1z2eNYPNqb6LZdRRbnXfTHZ705YzK51OkALGzHW6NLlvUoPSGRg2WV3BwmcAYOXUaFU2NFxDZxEi/bkjzcyQ0oKgwOIRgASsd3cUSc4CfnRg6J37yWEn0hbI/eolIO0GLnmxeCCMZh54rC0HndT3lQf4Mte39Wmwm2XUUW5130x2e9OWMyudTpACxsx1ujS5b1KD0hkYNlldwcJnAGDl1GhVNjRcQ2cRIv25I83MkNKCoMDiEYAErHd3FEnOAn50YOid+8lhJ9IWyP3qJSDtBi55sXggjGYec7MncQIWO5GhZwEu3TsJlJOpVVMpCFhZNmUHim9kvy0dEb7Xj2qWJgTvGZcRQaGMIBWeK9XI7ApoHYxLlTlKgG8+Th3yUCWaMbrKIKz6c+Pn+RTxpXfJ3WxVN2cXfErn6aC2hu9vIFMTNZfQEMkshX3z5xn7O8d1p3x33h/AtEIA==','2025-04-30 08:52:57','2025-04-30 08:52:57','hadesDbSvcUser@172.19.0.1',0),(172,43,'ONBOARDING_CONFIG','EixrI0E+kRo1Kmz5/yaWTaLoDZ3IHygM7KgSdrb5JU6L1MAs0L6l4uLS/j3fRHhtoy59Hi7QDsi9JGMZDXSYDwkOoW/6RZSQ/5MT/lsKtOYUnMdAyAIrUfZV78/jttVhuFDJh37HMu+6YCQwRdtrldpXpFrstr7b0kDE6265ldk2RSKObqbnoor6FrPW3dW3oJPHTNToDmLDMuTOv80D+menEW97W3HzJ9Agv/pYHnA=','2025-04-30 09:11:58','2025-04-30 09:11:58','hadesDbSvcUser@172.19.0.1',0),(173,43,'os_shops_DEV_BUCKET_S3_CREDS','8qQUs0vhaVVUX5EWaVuKdLVEzvK/t1AT32f1hVsUsipXpl9sEDzU7GpfevkL327wyRNpcvvHFo7Ya52ZlgOcbSou3F/l0xbI/stORYzjcJfuupklYsY/yJhk60LBpu2naVLH4CFbdouKY9y7o5jMShE49l6hupjdysvhQXJzCWALET3jbONRynXuJmVKrqDl5DcGwafwd1TiLo3T1rnrp4dbkYgBq3FpN2C81XGFkOmrWDylM5hMnJfhbU8XyKC2','2025-04-30 09:13:01','2025-04-30 09:13:01','hadesDbSvcUser@172.19.0.1',0),(174,43,'os_BQ_CREDS','kInZKcQhIXLXyX7coR01+WWYcfGWJScQWFVhDpP/yPqTPEr9svGTLIJ8QFOF8EzjLjw/9sHlY19fnkBgGWqPm7EyxR6Kl5NTYa7HH/nKNEvS2yUVHEQRbu/XhrMO76cNRyzlcPE6oybeDZlo6GTV3su8TTQ4pcctzf6u3EXpcgEeAvPAhShhLHFk3cTsDD6wH+X6FrXcJ9d2R8GQhdE2hRsvWyQfnFMFf10RCWE+2Iz/bb2HRfb7V52yze0o+mJuGJIq/7otoEgO7DS7O1mU+dDPyjLjVm/4j5FEl3u9a/p88QSOx1M3swWkOH5Z7HxWTVbmbT4GVmA5mB6/zae0+RbnQFNWYVmtewLICZCEu4wodewACroKwUCqAS/PCUothb46lYYyGzoR9ojC0HqoOFt27/lGSGmCPcbFSySB4mYtPK8kYCSe0OHYVjT3XVadds2DXtPTPjJnR2ZxDZwzJjvH9TmyFFS1IlWeafSJU0meIykS8c+WwuK/PzFXIgvElSfZWeiit0w8g58WNHp60iLZ4owdJsNR8wrMeRcl44/XrV1BajNu53RUmD1ZOqmIeCvYW9I8YrTWfcsFgpMFE7PgVPnj/Lnu3dnW6nnnITKTdKxxTT8niX/vLXWXTmfgji/gOru7aPCV6qY12niy7E8bXaSD1JGv/gmnGPsz1/R4h3H68yBluBEW2JBYyMVALfE8NlGBaQYA679uS7TIlPNwZvRrj1y1RyLYs012ekpB36YyXNqbVyi2N1zJenOgBFL1qBebRa9ucsggxLbD8xo2cElvTnSQlKGqEAbOa3xy//BBf+N4erfQ/nM0qTpiO5/Jh/jMJjaqNb2Q5uFIx3d88BaJ29rekGAc3PIsbDU7+hYnRH4m515hmac3ajcZcC3n/RS0ixeMCaSS9dF0k2MadYg2XPXW4GYnBmXtmUrJzHIM9GY6KZueS8RPErEoDQ5838kWZV6JXvCw6wRhw8w/YYNLC83UTodfpAG0pde4UPmtEK6gvN7PtIJ8H1nII0e3nGVIfE23k1e2aWOmnVRdl1ZjWY8+3fiHbrMYlK6yPkkCInNFpGUmP4yOLVSkl+RpzHjqajjoxSgKnD6NZPe8/ZWEpslOpgRMAcREzNYPu72hboFPkmw6zo3QcCGpipHDBzwF6QJd5zCQIoOJLPNhkVGH+E4rxo6Og8BCAL1/d2ce5Lqo5pL3say2Zb6MIVu9vVLvVxy1wT0k7nJxrXVVvW085qIDlYvJzCnO//YYLud5hM4s/RG95M14m4mYr2tfZXmWT54etj8V2MRb2WsCzsdPQ6Ng/uffKeLaAJ4MRxCDwfu2TILhFQqCENiQTDivyxkFgTROSDX0SZlVC8McRMlOokjIcYC0n+u9cM9xUNZg24HUuwbzaotbD2AFkVP0azqhiGVVSncRdbvlpOU6EX+z0BSDyqstHKydZ74ULYQW5nOQkYyzWn+wpHTak27J0mP+cP1s8JGSM2kwNV/2N4VRVWh4k67naRK6xhZVU/9ZWOqNJoztnVe68+lJg6Bs5YeiImtIA5tCiCuO7jvL+PBDq2ruJVAIyQWDbaXZ9BlZjJlNov6e1row7WKFeInpyAVYBbYYBrrJeKqBbOgyLIa8EPObXvvat7RJJK16pkliFOW5FWNcBpaSlWHKaXnlyVHgdbnJVtr65PmL8tCnIEBzOklQSeOO3M3bPLX628lSP3LQBxcfG+HkFSL/mUmbwJXq0IZBE/KJ0J99sW/Ov82FR7fZjLEiIJCiYEfQywyqKdyEq7uzRoS/BsydKHPtL9ZI3dy7TRpRki0pT6CG3OUQuupQQtm0NAbCiQhLWIdU2r4MyTZ5M8XDsOITY3HylZJHt6zZ5/96tdMRoR0IzFzf/xqF9aapny1xpHvJoP/xlVhWduGd+aJDBLXgSSZSD3keBNLZPzl4DYX/596cAah8rFk0Qo9/q8ID1w85bted1gqoepW1Fump2me86waqBlBa5/zvw7ROO/EP1QP53kTHlD3AxsQyhxXm6O5WSMJElbUUiomPdSHOO4ZXGjmbzY4jtpEev4iWBYLpdABJFzi/TqhlC3LrYtblSTY+aqvjnRAhFIWie5rVOSZuOt8Cdjnmvj2ahCWNsrB2WUHo0Bhh3b/7GpzLxS7SmBEQbGnLbIHUg3vM87tuDM3aDl+jUttHlu97JiJsv9+YXbW63+RYk+4mgrJGw+vJ6sbikgwNPPf2LENetttfuVKh/ck44Z4x63pCbfP4gs73tdLyieCpcsKh1fJ5yEVDcfrSvjgjhMM10nOAh+fRKnuE3nv7rrcjOvLBM4r18QJbj7fP0btt0rxZva4OnstLJmgJxIk9KOIAa/Z0LnH9cQxnLDCbYNUSA+c6oUqAesnLga2NmByAiiIP068Nvj45QNF4kBztuAYpOhRe+FZRLZeEtI8rgiEj9du/YNG0q2nMJeGOCHI1mdUA+MoiK6iXL71QTcvMrX1mt867LVTwxq20A6Bc+c/qaRJ3MkDu4woFWRScx0DIAitR9lXvz+O21WF0v0eOEDvO6iZUodYkxjkNNiN2Emw4dtMIUCidRW+1BwDumzfLTBxKm9IKCYQIJCLWEwwWYKJJsQmz2agVKeIOUSnqoH5tEymPyxExk9ifBNeRaQVw8XUBZTTdDV8SURYo25/je10zN1RHaO5aqxucB/Qx3NNnau2zFYcpJY1229DVw9R/z5Bcjq6u3Z0xqCRiIW6t3GOx6vSHyLRZLJdkDPf4APUFSaJcEsx41Ny7Kb7XyGL8RvcvufPNAAjSMkEVW/RkdPn0PaSzr5asMNMa7AmM5ubXSgAwyrW6k3WFpnkm4S8mgC+gOVFaRP57ns4tNDAtfdn6RmfnBzS0ZWeXwRaO/qn9nXcLpCmMXKENpIp3wMsneXFmdTsxj5DG+4PJfRfSpWnsTrWIFJCb1U7AERp0Tv1QSjfDRnx+PAPOXOWQV03pJ3q6EqPdXmuj1yPiFMdpresIz8GTjFR3kZO/N2uDc3pmA0OrvKvvMcE5OcLh7CoGvlhONV2tOA+V6mMIi0IweVT+8DcM6MSC+FniFmff5q5EQhmM9T+h2XQYNn0/7nhZmbmq8Xol50FADhw=','2025-04-30 09:14:48','2025-04-30 09:17:56','hadesDbSvcUser@172.19.0.1',0); +/*!40000 ALTER TABLE `encrypted_app_contexts` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_encrypted_app_contexts_insert_trigger BEFORE INSERT ON hades_db.encrypted_app_contexts +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_encrypted_app_contexts_update_trigger BEFORE UPDATE ON hades_db.encrypted_app_contexts +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `encrypted_tokens` +-- + +DROP TABLE IF EXISTS `encrypted_tokens`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `encrypted_tokens` ( + `token` varchar(100) NOT NULL, + `auth_channel_id` int(11) DEFAULT '1', + `issue_datetime` datetime NOT NULL, + `expiration_datetime` datetime NOT NULL, + `ubid` varchar(50) NOT NULL, + `user_id` int(11) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`token`), + KEY `encrypted_tokens_idx1` (`ubid`,`expiration_datetime`), + KEY `encrypted_tokens_idx2` (`token`,`expiration_datetime`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `encrypted_tokens` +-- + +LOCK TABLES `encrypted_tokens` WRITE; +/*!40000 ALTER TABLE `encrypted_tokens` DISABLE KEYS */; +INSERT INTO `encrypted_tokens` VALUES ('+/8Gt1BnP7BHVSau8k1++jVBvxGxviRvqMvr7lm6tTpdVitfI+Fcgu2C+noYobni',1,'2024-07-31 06:13:25','2024-08-07 06:13:25','unique12345',100128,'2024-07-31 06:13:25','2024-07-31 06:13:25','hadesDbSvcUser@172.19.0.1',0),('+0R1B/ji9JUms/Wc10VH7Iqa0Vyj/WFnYsFpTRZTGTtdVitfI+Fcgu2C+noYobni',1,'2024-06-06 06:45:34','2024-06-19 09:31:01','unique12345',100015,'2024-06-06 06:45:34','2024-06-19 09:31:01','hadesDbSvcUser@172.19.0.1',0),('+4aKJDivHCWlQcmTxFpL/5jdXvCbIa1VH1KHUc6JGkldVitfI+Fcgu2C+noYobni',1,'2024-09-03 06:34:30','2024-09-10 06:36:13','unique12345',100104,'2024-09-03 06:34:30','2024-09-03 06:36:13','hadesDbSvcUser@172.19.0.1',0),('+4M0v5dwvVpditKSM6fqpq03ZkynSuiyV99iJZBTQyNdVitfI+Fcgu2C+noYobni',1,'2024-07-26 10:09:01','2024-07-30 11:33:39','unique12345',100015,'2024-07-26 10:09:01','2024-07-30 11:33:39','hadesDbSvcUser@172.19.0.1',0),('+7LX87n8TF8O3v41TcCqdrdpz5iKtjjgmnL6IJuGieFdVitfI+Fcgu2C+noYobni',1,'2024-05-23 01:47:09','2024-05-24 10:13:42','unique12345',100017,'2024-05-23 13:47:09','2024-05-24 10:13:42','hadesDbSvcUser@172.19.0.1',0),('+Bpfj8zM/BiL5R1MG2IkOP+RIHmGl8zD1uy0sdOu8RQ=',1,'2024-08-29 09:18:38','2024-09-13 13:10:08','unique12345',100005,'2024-08-29 09:18:38','2024-09-06 13:10:08','hadesDbSvcUser@172.19.0.1',0),('+G2zhTnDGHeuHML9b2VIdnA0l0uNP2V840YQFcyiFZRdVitfI+Fcgu2C+noYobni',1,'2024-06-04 05:01:07','2024-06-13 13:22:15','unique12345',100046,'2024-06-04 17:01:07','2024-06-06 13:22:15','hadesDbSvcUser@172.19.0.1',0),('+G3bD4/cwIZ+J32E6gOcmaFDb8xZ1VWPL7uWWsiw1ZNdVitfI+Fcgu2C+noYobni',1,'2024-07-30 06:18:13','2024-08-12 11:46:08','unique12345',100114,'2024-07-30 06:18:13','2024-08-05 11:46:08','hadesDbSvcUser@172.19.0.1',0),('+jiaGty5cFgLbuHqyg0v7T3xbnvcs+teki+sA394IYM=',1,'2025-01-07 08:18:26','2025-01-29 04:38:15','unique12345',100088,'2025-01-07 08:18:26','2025-01-22 04:38:15','hadesDbSvcUser@172.19.0.1',0),('+k8cE18mvfLc+ufyWNDgIDk8hNHvzjWg4/3K5G1hd4BdVitfI+Fcgu2C+noYobni',1,'2024-07-31 09:12:25','2024-08-07 09:12:25','unique12345',100133,'2024-07-31 09:12:25','2024-07-31 09:12:25','hadesDbSvcUser@172.19.0.1',0),('+qIBW3j/GhTjihw4hhdWJY4vVB2K/KyoXEHyIRHaqcJdVitfI+Fcgu2C+noYobni',1,'2024-05-29 10:47:45','2024-06-10 09:21:18','unique12345',100017,'2024-05-29 10:47:45','2024-06-10 09:21:18','hadesDbSvcUser@172.19.0.1',0),('+SpBbl/0zZhCQvMoKk1LhDhWr8CEugyM8KrmRjicAM1dVitfI+Fcgu2C+noYobni',1,'2025-03-27 06:36:54','2025-04-08 08:39:19','unique12345',100053,'2025-03-27 06:36:54','2025-04-01 08:39:19','hadesDbSvcUser@172.19.0.1',0),('+Z+OrspirV4Vj1Ua9uMmwBeKP86pZD0leZuDyf3/MZBdVitfI+Fcgu2C+noYobni',1,'2024-06-17 01:53:47','2024-06-17 05:21:16','unique12345',100039,'2024-06-17 01:53:47','2024-06-17 05:21:16','hadesDbSvcUser@172.19.0.1',0),('//Nx3rVSI0Gt/wXMR5sXjbi/KLxFCmauUIm7uSl3OuZdVitfI+Fcgu2C+noYobni',1,'2024-06-18 08:04:09','2024-06-18 08:14:55','unique12345',100098,'2024-06-18 08:04:09','2024-06-18 08:14:55','hadesDbSvcUser@172.19.0.1',0),('/2uNrSeyZGvXfcnjuhU9GvHabvOwr8tOQ/9O9Ad9RftdVitfI+Fcgu2C+noYobni',1,'2024-06-14 08:00:06','2024-06-21 08:00:06','unique12345',100083,'2024-06-14 08:00:06','2024-06-14 08:00:06','hadesDbSvcUser@172.19.0.1',0),('/4ly/K5Ukcs39Gc3Tl8gn/zsHDNdbvuvagykH3uNP5tdVitfI+Fcgu2C+noYobni',1,'2025-04-30 10:11:26','2025-05-13 11:58:42','unique12345',100294,'2025-04-30 10:11:26','2025-05-06 11:58:42','hadesDbSvcUser@172.19.0.1',0),('/82HQ2vDF/zmApuu1ja4hpMBKOHDMB1rYk6/+BOmIztdVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:51:46','2024-05-24 10:54:02','unique12345',100022,'2024-05-24 10:51:46','2024-05-24 10:54:02','hadesDbSvcUser@172.19.0.1',0),('/8Kzm1o0xQVY1Ikzb1cdeCoE4XbSCYqZaL4eK0TokBxdVitfI+Fcgu2C+noYobni',1,'2024-10-24 05:08:11','2024-12-26 06:13:54','unique12345',100214,'2024-10-24 05:08:11','2024-12-19 06:13:54','hadesDbSvcUser@172.19.0.1',0),('/AJx4QB9KBVqdsi7vbzVuXCrN1S76ua08MfjpaH1PR1dVitfI+Fcgu2C+noYobni',1,'2024-10-18 02:15:56','2024-10-29 08:22:02','unique12345',100064,'2024-10-18 02:15:56','2024-10-29 08:22:02','hadesDbSvcUser@172.19.0.1',0),('/Bm+kbHnuaPUVVveHe9MFcKlh3uYHA+tm1HJ8CFAv0JdVitfI+Fcgu2C+noYobni',1,'2024-09-16 10:22:06','2024-10-01 09:44:08','unique12345',100006,'2024-09-16 10:22:06','2024-09-24 09:44:08','hadesDbSvcUser@172.19.0.1',0),('/fJS9iksSWd9ErWslq4O20sdOc1VyxjvW0OLtH9bhRpdVitfI+Fcgu2C+noYobni',1,'2024-06-20 08:13:08','2024-06-20 08:31:42','unique12345',100061,'2024-06-20 08:13:08','2024-06-20 08:31:42','hadesDbSvcUser@172.19.0.1',0),('/hn/uNfhYfauvy0l+RBNQGilXJEqpYsZghDGee1w8OVdVitfI+Fcgu2C+noYobni',1,'2024-12-23 11:48:24','2024-12-31 09:39:51','unique12345',100015,'2024-12-23 11:48:24','2024-12-24 09:39:51','hadesDbSvcUser@172.19.0.1',0),('/lXPbJiq+kT2VKwGCqFwXsc6OPMBfzSNCFImwTV2hOFdVitfI+Fcgu2C+noYobni',1,'2024-08-12 05:47:15','2024-08-19 05:47:15','unique12345',100139,'2024-08-12 05:47:15','2024-08-12 05:47:15','hadesDbSvcUser@172.19.0.1',0),('/moIMdXNEFFzJ13quNGxy7Rt1H1rxEX7kh4kngFbr/5dVitfI+Fcgu2C+noYobni',1,'2024-12-02 09:06:06','2024-12-03 05:17:15','unique12345',100015,'2024-12-02 09:06:06','2024-12-03 05:17:15','hadesDbSvcUser@172.19.0.1',0),('/My/55uAgrDIBFSnmknUMQnEdgQygA6AE94TSbPicrxdVitfI+Fcgu2C+noYobni',1,'2024-06-06 06:47:43','2024-06-14 09:48:54','unique12345',100050,'2024-06-06 06:47:43','2024-06-07 09:48:54','hadesDbSvcUser@172.19.0.1',0),('/SXzs6ueVO9bgFIvKKEPgVrT4zPpPtWEVmQKyVbhr1NdVitfI+Fcgu2C+noYobni',1,'2024-08-19 10:14:58','2024-08-26 10:15:50','unique12345',100105,'2024-08-19 10:14:58','2024-08-19 10:15:50','hadesDbSvcUser@172.19.0.1',0),('/tq1bO0mpOzuScDvV+/eaL8X6L45U2m3Mw0wkMKOFMNdVitfI+Fcgu2C+noYobni',1,'2024-07-02 09:12:15','2024-07-16 13:18:24','unique12345',100005,'2024-07-02 09:12:15','2024-07-16 13:18:24','hadesDbSvcUser@172.19.0.1',0),('/tsPI63bIzkp2IIIzpoADIHiW43KhA1BpwhTeHVBFnFdVitfI+Fcgu2C+noYobni',1,'2025-01-20 10:00:20','2025-02-04 08:03:48','unique12345',100005,'2025-01-20 10:00:20','2025-01-28 08:03:48','hadesDbSvcUser@172.19.0.1',0),('/tUOH7bLgJ5CBrOeLKIjAcZ6d9HFQFNPyL0S5kAlCgVdVitfI+Fcgu2C+noYobni',1,'2025-02-12 06:35:57','2025-02-19 08:06:17','unique12345',100022,'2025-02-12 06:35:57','2025-02-12 08:06:17','hadesDbSvcUser@172.19.0.1',0),('/uC/4RHxvDdqngU5FzdUpOJrYlMOAXCp5P826z1Tz5VdVitfI+Fcgu2C+noYobni',1,'2025-04-01 11:44:42','2025-04-01 11:46:54','unique12345',100017,'2025-04-01 11:44:42','2025-04-01 11:46:54','hadesDbSvcUser@172.19.0.1',0),('/XgnDkEGlh6aoDebsfqHnwGRLin9xIiCVWXbXQ+wBqs=',1,'2024-06-17 06:01:11','2024-07-04 08:09:26','unique12345',100058,'2024-06-17 06:01:11','2024-06-27 08:09:26','hadesDbSvcUser@172.19.0.1',0),('065V5CnEBj+seqnFLEOXR/9kfX0ALMZGRGKWkhBd5rVdVitfI+Fcgu2C+noYobni',1,'2024-08-19 05:24:06','2024-08-26 05:26:03','unique12345',100104,'2024-08-19 05:24:06','2024-08-19 05:26:03','hadesDbSvcUser@172.19.0.1',0),('0atLqHoKUZ6hEqRF/mj892LVBU4KewKmR31ejTh6C6s=',1,'2024-12-19 06:24:56','2024-12-26 06:48:16','unique12345',100339,'2024-12-19 06:24:56','2024-12-19 06:48:16','hadesDbSvcUser@172.19.0.1',0),('0AuJSnZU/QuA53ED3malPiiVicz+ssq5LBz18UuGQo5dVitfI+Fcgu2C+noYobni',1,'2024-08-19 11:15:02','2024-08-19 11:53:24','unique12345',100015,'2024-08-19 11:15:02','2024-08-19 11:53:24','hadesDbSvcUser@172.19.0.1',0),('0dg8aYuZ/ItiG9w+EAJqJWjaY8yVVmg0XW1F+MYaiF1dVitfI+Fcgu2C+noYobni',1,'2024-06-20 03:47:22','2024-06-27 09:14:42','unique12345',100100,'2024-06-20 03:47:22','2024-06-20 09:14:42','hadesDbSvcUser@172.19.0.1',0),('0jQj7l4drxwAtsLYs1IpqwnGwQlqzct1zya31eQtdeNdVitfI+Fcgu2C+noYobni',1,'2024-08-05 09:48:26','2024-08-05 09:54:17','unique12345',100106,'2024-08-05 09:48:26','2024-08-05 09:54:17','hadesDbSvcUser@172.19.0.1',0),('0Jz2s0CO4TUYhLB071FXuGaxuvuas7AftEQZS7TYMJhdVitfI+Fcgu2C+noYobni',1,'2024-07-06 02:17:11','2024-07-07 06:01:21','unique12345',100032,'2024-07-06 14:17:11','2024-07-07 06:01:21','hadesDbSvcUser@172.19.0.1',0),('0JzmxwRN1hpeRhFYRrlukdDVfTF22PkWDXZWxZ5XWkNdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:23:08','2024-06-18 05:23:08','unique12345',100066,'2024-06-11 05:23:08','2024-06-11 05:23:08','hadesDbSvcUser@172.19.0.1',0),('0m4Talvygw/ntucY1JzCL5YCAvonOg+VOjksra/cqsFdVitfI+Fcgu2C+noYobni',1,'2024-06-17 08:53:53','2024-06-24 08:54:30','unique12345',100091,'2024-06-17 08:53:53','2024-06-17 08:54:30','hadesDbSvcUser@172.19.0.1',0),('0me/GYmbK5xbkUm3b6cNsjEW25KuRf5nIStn7U2BN6ddVitfI+Fcgu2C+noYobni',1,'2024-06-17 05:23:05','2024-06-24 05:50:45','unique12345',100050,'2024-06-17 05:23:05','2024-06-17 05:50:45','hadesDbSvcUser@172.19.0.1',0),('0mssp5IDiX7vJLce4lwllfA1fnD2dRTsm0VMlogRm11dVitfI+Fcgu2C+noYobni',1,'2024-10-15 09:16:53','2024-11-01 08:32:23','unique12345',100215,'2024-10-15 09:16:53','2024-10-25 08:32:23','hadesDbSvcUser@172.19.0.1',0),('0oIlE9I3MEHF1PDZ+8Kzu42YQ018xS5qri7n6KXY7n5dVitfI+Fcgu2C+noYobni',1,'2024-06-14 06:10:32','2024-06-26 09:08:37','unique12345',100014,'2024-06-14 06:10:32','2024-06-26 09:08:37','hadesDbSvcUser@172.19.0.1',0),('0vgQvsPKfPhPHE9/KFMQEUr2Zdf8OPutagDGY1568QldVitfI+Fcgu2C+noYobni',1,'2024-05-21 09:59:39','2024-05-21 10:00:01','unique12345',100001,'2024-05-21 09:59:39','2024-05-21 10:00:01','hadesDbSvcUser@172.19.0.1',0),('0WYovj2kI6aDJEm1oSY+Qe7gyxnPiupt4zUiafYJKPddVitfI+Fcgu2C+noYobni',1,'2025-02-12 05:56:08','2025-02-17 01:14:12','unique12345',100064,'2025-02-12 05:56:08','2025-02-17 01:14:12','hadesDbSvcUser@172.19.0.1',0),('1+LK80KzEUi8MJZSddRy9PlewXslXmr98VSN8tqdXzldVitfI+Fcgu2C+noYobni',1,'2024-11-13 06:02:34','2024-11-27 08:28:34','unique12345',100339,'2024-11-13 06:02:34','2024-11-20 08:28:34','hadesDbSvcUser@172.19.0.1',0),('10N1ajWN6tb9Ub9EHhh45KY9VyTv5kj9Bt5jIqQLG8k=',1,'2024-06-27 05:28:26','2024-07-10 07:08:41','unique12345',100062,'2024-06-27 05:28:26','2024-07-03 07:08:41','hadesDbSvcUser@172.19.0.1',0),('1b4C6rYwwB20v6Kn0yCBm1w7OlnmoR3i7/zjP/a/6+tdVitfI+Fcgu2C+noYobni',1,'2025-01-07 10:20:59','2025-01-14 10:21:59','unique12345',100053,'2025-01-07 10:20:59','2025-01-07 10:21:59','hadesDbSvcUser@172.19.0.1',0),('1E6/Jky4Yc4JY7BZdBsZqDqo+ahBFfFxroqkTkd+GgNdVitfI+Fcgu2C+noYobni',1,'2025-06-03 06:42:02','2025-06-10 06:42:39','unique12345',100015,'2025-06-03 06:42:02','2025-06-03 06:42:39','hadesDbSvcUser@172.19.0.1',0),('1iWPbeTbMQpoQ+fgAkZiL1yulDGQkt7y7djyOI5Z2cVdVitfI+Fcgu2C+noYobni',1,'2025-03-27 09:31:29','2025-04-04 10:03:48','unique12345',100111,'2025-03-27 09:31:29','2025-04-04 10:03:48','hadesDbSvcUser@172.19.0.1',0),('1SmXF1EL/uodch7pSL7RrLhymxSTHey2OGT8m4YQ6/ZdVitfI+Fcgu2C+noYobni',1,'2024-11-08 06:10:40','2024-11-15 06:26:10','unique12345',100331,'2024-11-08 06:10:40','2024-11-08 06:26:10','hadesDbSvcUser@172.19.0.1',0),('1tJTp/IBkPIgac/WTIdFSuo+XHr3Wxj4x36eA04eegtdVitfI+Fcgu2C+noYobni',1,'2025-01-24 06:14:35','2025-01-24 06:16:33','unique12345',100294,'2025-01-24 06:14:35','2025-01-24 06:16:33','hadesDbSvcUser@172.19.0.1',0),('1tXZmSY/nNZ/15Gmam4dQxGSpqMIe/zo6bMmgcabpDldVitfI+Fcgu2C+noYobni',1,'2024-05-29 05:29:50','2024-05-29 09:01:25','unique12345',100038,'2024-05-29 05:29:50','2024-05-29 09:01:25','hadesDbSvcUser@172.19.0.1',0),('1ySQpP21hfQ32ugqoPvRu3zY8gPe9khrJqk1qb8S+MVdVitfI+Fcgu2C+noYobni',1,'2024-05-29 09:12:24','2024-05-29 09:19:07','unique12345',100023,'2024-05-29 09:12:24','2024-05-29 09:19:07','hadesDbSvcUser@172.19.0.1',0),('1z/1DDnompFLc0AEV1E9WIVvuSYM1E2jqSH+JatYMSldVitfI+Fcgu2C+noYobni',1,'2025-01-20 08:40:23','2025-01-27 08:41:06','unique12345',100053,'2025-01-20 08:40:23','2025-01-20 08:41:06','hadesDbSvcUser@172.19.0.1',0),('211x8zKefXoTIQxK2exWN5fp11Ry6EiIoPvfoFTc7EFdVitfI+Fcgu2C+noYobni',1,'2024-09-23 00:06:35','2024-09-25 03:59:52','unique12345',100015,'2024-09-23 12:06:35','2024-09-25 03:59:52','hadesDbSvcUser@172.19.0.1',0),('23jVBDDFMhFiKRAeimK9bhQ2fgyuvzhRMTtg7Wz7hItdVitfI+Fcgu2C+noYobni',1,'2025-02-05 05:37:57','2025-02-05 07:03:46','unique12345',100064,'2025-02-05 05:37:57','2025-02-05 07:03:46','hadesDbSvcUser@172.19.0.1',0),('25XC08BuhFY/PiwTipCuRUFxN/B/UphRfcQNrHYKTARdVitfI+Fcgu2C+noYobni',1,'2024-08-09 10:01:27','2024-08-23 06:01:02','unique12345',100017,'2024-08-09 10:01:27','2024-08-23 06:01:02','hadesDbSvcUser@172.19.0.1',0),('2BXAVJ2ZlkoGPn88bc5WbdIGBBnPA8yIAi0C1nfZKMpdVitfI+Fcgu2C+noYobni',1,'2024-05-21 00:09:34','2024-05-24 09:45:44','unique12345',100006,'2024-05-21 12:09:34','2024-05-24 09:45:44','hadesDbSvcUser@172.19.0.1',0),('2e7JR63YEJibGCI0i8wBCarrpRxVz8399pVqLrKGlLxdVitfI+Fcgu2C+noYobni',1,'2024-05-25 07:52:36','2024-06-04 12:39:37','unique12345',100021,'2024-05-25 19:52:36','2024-06-04 12:39:37','hadesDbSvcUser@172.19.0.1',0),('2LU688yYa02iotJWTQS4X3P24tOq8FUzS7p2+jNKXNFdVitfI+Fcgu2C+noYobni',1,'2024-07-31 08:52:03','2024-08-01 06:15:53','unique12345',100015,'2024-07-31 08:52:03','2024-08-01 06:15:53','hadesDbSvcUser@172.19.0.1',0),('2N01OI9h4RlzzwK8q6LBwesF6eyNFnYAF2XlAwob3CFdVitfI+Fcgu2C+noYobni',1,'2024-06-13 06:03:26','2024-06-20 06:03:26','unique12345',100076,'2024-06-13 06:03:26','2024-06-13 06:03:26','hadesDbSvcUser@172.19.0.1',0),('2NBZKF8rdkqIWagLhMf6oxgWC7LznyvFrrybAlJmQvtdVitfI+Fcgu2C+noYobni',1,'2024-08-05 04:06:13','2024-08-05 04:09:03','unique12345',100015,'2024-08-05 04:06:13','2024-08-05 04:09:03','hadesDbSvcUser@172.19.0.1',0),('2NVDoqJMjZCkXEqlvrhv8sBhXCT+4haVEKZ7w6wsPb9dVitfI+Fcgu2C+noYobni',1,'2025-02-21 05:38:53','2025-03-04 03:27:22','unique12345',100335,'2025-02-21 05:38:53','2025-02-25 03:27:22','hadesDbSvcUser@172.19.0.1',0),('2pem9MdsK+Q0P9bvrlCJnJ2+aUGlwRUcxVqDLUbBW4tdVitfI+Fcgu2C+noYobni',1,'2024-05-23 01:27:20','2024-05-23 13:29:51','unique12345',100017,'2024-05-23 13:27:20','2024-05-23 13:29:51','hadesDbSvcUser@172.19.0.1',0),('2RfFKwBwU57jgMBDOr1wtEFJgEVGV7BfdeXc1nfWeoVdVitfI+Fcgu2C+noYobni',1,'2024-06-17 06:07:02','2024-06-17 06:07:28','unique12345',100062,'2024-06-17 06:07:02','2024-06-17 06:07:28','hadesDbSvcUser@172.19.0.1',0),('2w3n3obqhwiWKZbI9nM7gsd+2QH0vc0NdC0Ry0DXzjBdVitfI+Fcgu2C+noYobni',1,'2024-06-24 05:10:20','2024-07-15 09:47:43','unique12345',100064,'2024-06-24 05:10:20','2024-07-08 09:47:43','hadesDbSvcUser@172.19.0.1',0),('2YvCCgN64PI28aBbU0QWLPjNd12WFLWGeYBd0QjKbKddVitfI+Fcgu2C+noYobni',1,'2024-10-25 06:20:48','2024-10-29 07:37:13','unique12345',100023,'2024-10-25 06:20:48','2024-10-29 07:37:13','hadesDbSvcUser@172.19.0.1',0),('3Avj9FN7OD5tlNxnFodUEy9//D6L5vQzvfO5VKRrIy1dVitfI+Fcgu2C+noYobni',1,'2024-07-16 01:43:48','2024-08-08 09:07:12','unique12345',100005,'2024-07-16 13:43:48','2024-08-08 09:07:12','hadesDbSvcUser@172.19.0.1',0),('3GwefMQiqoOQyWfthRf+BqQrdNPBv+TZDtlW7CxslXldVitfI+Fcgu2C+noYobni',1,'2024-12-04 10:41:33','2024-12-05 09:22:51','unique12345',100015,'2024-12-04 10:41:33','2024-12-05 09:22:51','hadesDbSvcUser@172.19.0.1',0),('3I+n4u41SHDz0qC3r99+AoFboyLyyvu2gEqKq61kFkxdVitfI+Fcgu2C+noYobni',1,'2024-05-29 08:51:24','2024-05-29 09:01:06','unique12345',100042,'2024-05-29 08:51:24','2024-05-29 09:01:06','hadesDbSvcUser@172.19.0.1',0),('3icgHC5OFDYHz/jJZ0U3HdKTY4LsNr0QovE/JP06IZM=',1,'2024-05-29 07:10:36','2024-05-29 07:10:44','unique12345',100015,'2024-05-29 07:10:36','2024-05-29 07:10:44','hadesDbSvcUser@172.19.0.1',0),('3J2r1GKJN4DaiziSpNR+co+9qeAg8wh2+W1/AD10PCFdVitfI+Fcgu2C+noYobni',1,'2024-07-01 01:44:56','2024-07-18 02:26:48','unique12345',100088,'2024-07-01 01:44:56','2024-07-11 02:26:48','hadesDbSvcUser@172.19.0.1',0),('3J3OKZpq+jnOUxpyTrg5z5rhyH9f2MZRyLfOBRze8aZdVitfI+Fcgu2C+noYobni',1,'2024-10-14 01:11:20','2024-10-22 05:19:47','unique12345',100114,'2024-10-14 13:11:20','2024-10-15 05:19:47','hadesDbSvcUser@172.19.0.1',0),('3Lf6IJ7+anpfEwrp/SUBI75QxlAOIEZgIYc3OxkSiA5dVitfI+Fcgu2C+noYobni',1,'2025-02-28 05:37:17','2025-03-07 05:37:20','unique12345',100088,'2025-02-28 05:37:17','2025-02-28 05:37:20','hadesDbSvcUser@172.19.0.1',0),('3mXGBwYVlxjkBIBCEglpXmi7MkVCZpDdj5IedjNvVPldVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:10:55','2024-07-01 09:04:33','unique12345',100063,'2024-06-11 05:10:55','2024-06-24 09:04:33','hadesDbSvcUser@172.19.0.1',0),('3PPsqGHiJxr5rb7HgCmHydgl1SwLemMWRv3c9yIP8EZdVitfI+Fcgu2C+noYobni',1,'2024-09-09 02:10:30','2024-09-16 05:40:35','unique12345',100088,'2024-09-09 02:10:30','2024-09-09 05:40:35','hadesDbSvcUser@172.19.0.1',0),('3v1HkdLCPJ6XBXg8O3u7/k5+nsV46MQ3pO6ycEsRbzVdVitfI+Fcgu2C+noYobni',1,'2024-07-16 00:59:21','2024-07-16 13:01:02','unique12345',100106,'2024-07-16 12:59:21','2024-07-16 13:01:02','hadesDbSvcUser@172.19.0.1',0),('3wIrsV+kZUBrpnTqceCnFiEIZmgCqBC//ZhY1mLt5XNdVitfI+Fcgu2C+noYobni',1,'2025-04-01 11:47:18','2025-04-08 11:47:29','unique12345',100017,'2025-04-01 11:47:18','2025-04-01 11:47:29','hadesDbSvcUser@172.19.0.1',0),('3wyBJ0wx2+K5Jwsm+Bznp8S0rDb+vVYyzK++Zr/uOvxdVitfI+Fcgu2C+noYobni',1,'2024-07-23 07:07:59','2024-07-30 07:08:02','unique12345',100056,'2024-07-23 07:07:59','2024-07-23 07:08:02','hadesDbSvcUser@172.19.0.1',0),('4450WFYHBYLRmsQvE/sCMmP0gq0fpGdRPD9ikcnaqno=',1,'2024-07-04 00:49:46','2024-07-08 05:25:49','unique12345',100015,'2024-07-04 12:49:46','2024-07-08 05:25:49','hadesDbSvcUser@172.19.0.1',0),('46onaXvs2nEEVLdcaesgxgZHaHrs5jYyy+iVZ5UHUpNdVitfI+Fcgu2C+noYobni',1,'2024-08-19 06:43:41','2024-09-09 19:39:49','unique12345',100111,'2024-08-19 06:43:41','2024-09-09 19:39:49','hadesDbSvcUser@172.19.0.1',0),('4BFYvvRhDcByEsaSZSGLaHmWgHmvkmOBXY3DigTKsAhdVitfI+Fcgu2C+noYobni',1,'2024-11-04 06:50:13','2024-11-04 08:42:29','unique12345',100321,'2024-11-04 06:50:13','2024-11-04 08:42:29','hadesDbSvcUser@172.19.0.1',0),('4c6peGdH8SoXims6BRM8klX/aZcdecHB3d2jeVKv2QtdVitfI+Fcgu2C+noYobni',1,'2024-09-10 00:21:17','2024-09-27 02:26:30','unique12345',100182,'2024-09-10 00:21:17','2024-09-20 02:26:30','hadesDbSvcUser@172.19.0.1',0),('4EG0UsqZFLxp0JqeCkpD7Bd8w55Alx77Ov4JfzB7hAJdVitfI+Fcgu2C+noYobni',1,'2024-08-08 07:02:07','2024-08-08 07:09:07','unique12345',6030,'2024-08-08 07:02:07','2024-08-08 07:08:37','root@172.19.0.1',0),('4evRVymg0n8tfN18HYrqaXlf2zNIpT5ESX7AOI7YOg5dVitfI+Fcgu2C+noYobni',1,'2025-04-07 05:53:16','2025-04-15 05:49:43','unique12345',100526,'2025-04-07 17:53:16','2025-04-08 05:49:43','hadesDbSvcUser@172.19.0.1',0),('4FXDMOp9cRARSiAgrojdDfedoxsxd/k5azI7WA8i1+JdVitfI+Fcgu2C+noYobni',1,'2024-08-05 04:10:28','2024-08-05 04:16:15','unique12345',100015,'2024-08-05 04:10:28','2024-08-05 04:16:15','hadesDbSvcUser@172.19.0.1',0),('4kcbIDcNrZgUUtlp8jmbWcA+gh6H7exBGkmdwM+14addVitfI+Fcgu2C+noYobni',1,'2025-01-06 05:35:53','2025-01-06 05:42:41','unique12345',100215,'2025-01-06 05:35:53','2025-01-06 05:42:41','hadesDbSvcUser@172.19.0.1',0),('4nSLSixoJSaDQxJrL0L4GBBu/6/pbtrHm/EXNObqoNRdVitfI+Fcgu2C+noYobni',1,'2024-10-23 05:17:39','2024-10-28 08:39:03','unique12345',100005,'2024-10-23 05:17:39','2024-10-28 08:39:03','hadesDbSvcUser@172.19.0.1',0),('4SZQ0vxUpHSU63h0e/DsPqiCQUoYS3/Ois/FV+Qgt8BdVitfI+Fcgu2C+noYobni',1,'2024-06-19 06:49:26','2024-06-19 06:49:40','unique12345',100005,'2024-06-19 06:49:26','2024-06-19 06:49:40','hadesDbSvcUser@172.19.0.1',0),('4T8q7bw//pEl1DuGtftRXT/1LYK8681Cc5xAlqXlj7tdVitfI+Fcgu2C+noYobni',1,'2024-08-08 09:35:53','2024-08-20 07:16:40','unique12345',100052,'2024-08-08 09:35:53','2024-08-13 07:16:40','hadesDbSvcUser@172.19.0.1',0),('4ZgMzoVWQZ613eC0LA8GU78Nc8znq8k8OH1RthMpNBVdVitfI+Fcgu2C+noYobni',1,'2024-07-31 06:05:57','2024-08-07 06:05:57','unique12345',100126,'2024-07-31 06:05:57','2024-07-31 06:05:57','hadesDbSvcUser@172.19.0.1',0),('552HwFt7vrJOn8EZZbps5fEXx7XDhMQVLAlo1nMmrDBdVitfI+Fcgu2C+noYobni',1,'2024-10-28 05:37:24','2024-11-04 05:37:24','unique12345',100312,'2024-10-28 05:37:24','2024-10-28 05:37:24','hadesDbSvcUser@172.19.0.1',0),('56m7yqKLz+5kmA4yQjLpgo5is5O4W0eGZGdSBd7TSc1dVitfI+Fcgu2C+noYobni',1,'2024-06-12 09:04:14','2024-06-17 05:15:20','unique12345',100070,'2024-06-12 09:04:14','2024-06-17 05:15:20','hadesDbSvcUser@172.19.0.1',0),('5AAxB4tUeMwEsM1uofJQkejc/mLryA8qWwIBLKJmQKtdVitfI+Fcgu2C+noYobni',1,'2024-07-25 01:06:32','2024-08-01 13:07:14','unique12345',100113,'2024-07-25 13:06:32','2024-07-25 13:07:14','hadesDbSvcUser@172.19.0.1',0),('5hVy8HSg3c02hDj2tkxJS82eLGBXjSTwH15uFfN7hBxdVitfI+Fcgu2C+noYobni',1,'2024-08-09 09:53:22','2024-08-16 10:06:46','unique12345',100137,'2024-08-09 09:53:22','2024-08-09 10:06:46','hadesDbSvcUser@172.19.0.1',0),('5JQlQ5D/UnbwVI4OJKFGt4CuNe8yfv/zCwNdNyq8BuA=',1,'2024-07-17 04:42:00','2024-07-17 04:55:26','unique12345',100106,'2024-07-17 04:42:00','2024-07-17 04:55:26','hadesDbSvcUser@172.19.0.1',0),('5kWpq1i85Kj41tLyw24hHvPUNnnTpfPcugPCP/GMjwddVitfI+Fcgu2C+noYobni',1,'2024-08-08 11:25:39','2024-08-12 09:47:35','unique12345',100015,'2024-08-08 11:25:39','2024-08-12 09:47:35','hadesDbSvcUser@172.19.0.1',0),('5pjEl68DTdYexpJ8ObHyWUUJdu7H2bhTS064F15sx6ZdVitfI+Fcgu2C+noYobni',1,'2024-07-17 06:00:35','2024-07-17 06:06:14','unique12345',100106,'2024-07-17 06:00:35','2024-07-17 06:06:14','hadesDbSvcUser@172.19.0.1',0),('5TySxvwUlGCXIW5e8tPTkJDSdfw0DQ3l8aRtQ9J7NUhdVitfI+Fcgu2C+noYobni',1,'2024-07-17 06:06:28','2024-07-17 06:14:20','unique12345',100015,'2024-07-17 06:06:28','2024-07-17 06:14:20','hadesDbSvcUser@172.19.0.1',0),('5zwR27sQzTPYubGmYSxmW+cyF1wXinbvpS/OFTjz5gNdVitfI+Fcgu2C+noYobni',1,'2024-07-11 09:04:39','2024-07-11 09:12:12','unique12345',100106,'2024-07-11 09:04:39','2024-07-11 09:12:12','hadesDbSvcUser@172.19.0.1',0),('6+wP5+unoSmMGSbezwlmQUf0VMnQvnFOeFwhr2CEnwNdVitfI+Fcgu2C+noYobni',1,'2024-10-11 04:32:28','2024-10-11 05:07:24','unique12345',100015,'2024-10-11 04:32:28','2024-10-11 05:07:24','hadesDbSvcUser@172.19.0.1',0),('61gwGld6hvOe9kUNtjhOh0DbxQTTWmek8M1AYVG9YTtdVitfI+Fcgu2C+noYobni',1,'2025-01-15 06:51:08','2025-01-23 04:04:09','unique12345',100215,'2025-01-15 06:51:08','2025-01-16 04:04:09','hadesDbSvcUser@172.19.0.1',0),('69Y+mlIhV5wJa0BPRcgxbaKxD0S9mEaeiIInjh8qffVdVitfI+Fcgu2C+noYobni',1,'2024-09-06 07:38:57','2024-09-13 08:25:52','unique12345',100110,'2024-09-06 07:38:57','2024-09-06 08:25:52','hadesDbSvcUser@172.19.0.1',0),('6BKHszROE5XyHwILf5REDGhljpjH+OzOL+iNPDadvp9dVitfI+Fcgu2C+noYobni',1,'2024-05-23 04:30:35','2024-05-24 10:28:17','unique12345',100022,'2024-05-23 04:30:35','2024-05-24 10:28:17','hadesDbSvcUser@172.19.0.1',0),('6c/Z79ZNmCLthuqCS+gKR2x/4ru2ii3LHt80unrCFMhdVitfI+Fcgu2C+noYobni',1,'2024-06-18 01:10:36','2024-06-28 06:50:51','unique12345',100027,'2024-06-18 13:10:36','2024-06-21 06:50:51','hadesDbSvcUser@172.19.0.1',0),('6FZlk88Ub3t5wnSeQZeCjUNq09BQtiVxzYhM3V7RT9RdVitfI+Fcgu2C+noYobni',1,'2024-07-09 07:05:47','2024-07-17 05:47:18','unique12345',100061,'2024-07-09 07:05:47','2024-07-10 05:47:18','hadesDbSvcUser@172.19.0.1',0),('6G7VwS+lNd503vENT4qeT/iHipT0064IG4IYUs+VPBRdVitfI+Fcgu2C+noYobni',1,'2024-09-04 09:17:15','2024-09-11 09:35:44','unique12345',100025,'2024-09-04 09:17:15','2024-09-04 09:35:44','hadesDbSvcUser@172.19.0.1',0),('6GQ5EF6s0Oki6R7/NFIDbmHMea9LzTCuaWx1Jr46ugNdVitfI+Fcgu2C+noYobni',1,'2024-07-11 11:31:38','2024-07-11 11:31:42','unique12345',100015,'2024-07-11 11:31:38','2024-07-11 11:31:42','hadesDbSvcUser@172.19.0.1',0),('6I/HM92lFiAp1TKb+zbX2olFJ/hNA+fckYeEuTFPx0BdVitfI+Fcgu2C+noYobni',1,'2024-07-31 07:24:38','2024-08-07 07:24:38','unique12345',100132,'2024-07-31 07:24:38','2024-07-31 07:24:38','hadesDbSvcUser@172.19.0.1',0),('6LptC0hrXJjT3Bf3UMN6nX9a6498VLf+OrNRw5o2fWldVitfI+Fcgu2C+noYobni',1,'2024-10-08 04:49:02','2024-10-21 09:41:46','unique12345',100111,'2024-10-08 04:49:02','2024-10-21 09:41:46','hadesDbSvcUser@172.19.0.1',0),('6mikGkqtBLu9ufCTOGS+Q/aZ/GC3iW6rcfLYeVujj0FdVitfI+Fcgu2C+noYobni',1,'2024-06-11 07:20:45','2024-06-11 09:26:21','unique12345',100005,'2024-06-11 07:20:45','2024-06-11 09:26:21','hadesDbSvcUser@172.19.0.1',0),('6Qewi7PEtaA453+f1NVTBDG/a7JOkHxHvDA5Tiwy9ZNdVitfI+Fcgu2C+noYobni',1,'2025-01-29 10:03:51','2025-02-27 08:36:11','unique12345',100294,'2025-01-29 10:03:51','2025-02-20 08:36:11','hadesDbSvcUser@172.19.0.1',0),('6TnSVNoGOV1J998Ui+DeKE7CdotwPOnbxANAY7NnyeBdVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:45:59','2024-05-24 10:51:45','unique12345',100022,'2024-05-24 10:45:59','2024-05-24 10:51:45','hadesDbSvcUser@172.19.0.1',0),('6Urr15cJpX2E3QSS6wOCQiauv+xzRTKmuF7T9JMQuaRdVitfI+Fcgu2C+noYobni',1,'2024-10-28 08:39:07','2024-10-28 10:16:14','unique12345',100005,'2024-10-28 08:39:07','2024-10-28 10:16:14','hadesDbSvcUser@172.19.0.1',0),('6VF3nvGbdraWa1GE8/4tYYzS+dMCVRGkXSNNlgbLNvJdVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:46:30','2024-05-24 11:41:14','unique12345',100021,'2024-05-24 10:46:30','2024-05-24 11:41:14','hadesDbSvcUser@172.19.0.1',0),('6YKr1sFvLSYvBIWfdKUW7158GlFCX0jVKUXtxI5bvcNdVitfI+Fcgu2C+noYobni',1,'2024-07-08 08:19:19','2024-07-15 08:24:34','unique12345',100105,'2024-07-08 08:19:19','2024-07-08 08:24:34','hadesDbSvcUser@172.19.0.1',0),('6Zir3uVlBWSCFe85hO6QU3/V46iw91EQWnRf2tLYHhZdVitfI+Fcgu2C+noYobni',1,'2024-07-17 06:28:27','2024-07-19 10:37:53','unique12345',100015,'2024-07-17 06:28:27','2024-07-19 10:37:53','hadesDbSvcUser@172.19.0.1',0),('6zwNNZaSkCulzlgFaf3st+ilCxDM1rWaiWgHW4DlhQ9dVitfI+Fcgu2C+noYobni',1,'2024-12-09 09:51:02','2024-12-27 05:23:41','unique12345',100005,'2024-12-09 09:51:02','2024-12-20 05:23:41','hadesDbSvcUser@172.19.0.1',0),('7a7J8Hjm6dJus7gKGSo7Z74DrzHWKAvRCQQA+v2sEOxdVitfI+Fcgu2C+noYobni',1,'2024-06-17 08:52:54','2024-06-17 08:53:08','unique12345',100092,'2024-06-17 08:52:54','2024-06-17 08:53:08','hadesDbSvcUser@172.19.0.1',0),('7cGtOwViTq0o1awKP9K80WYSokgO6Y70bTSzVVBuqpRdVitfI+Fcgu2C+noYobni',1,'2024-10-30 09:29:14','2024-11-06 10:06:20','unique12345',100320,'2024-10-30 09:29:14','2024-10-30 10:06:20','hadesDbSvcUser@172.19.0.1',0),('7Ew/zt8ICmiDWWp5WQbprhp/qKrjWh5mc80J+NaWPh9dVitfI+Fcgu2C+noYobni',1,'2024-05-28 11:16:07','2024-05-30 08:58:41','unique12345',100014,'2024-05-28 11:16:07','2024-05-30 08:58:41','hadesDbSvcUser@172.19.0.1',0),('7IyqcLsM6rt/i2wMKZMaqC1t8S1sqXzdT8meQvSNwuJdVitfI+Fcgu2C+noYobni',1,'2024-08-13 07:29:32','2024-08-20 07:29:33','unique12345',100141,'2024-08-13 07:29:32','2024-08-13 07:29:33','hadesDbSvcUser@172.19.0.1',0),('7UVvCmmKIVoHc0yG6eZ6W3zcsLp+17Uxkno/npmE/PpdVitfI+Fcgu2C+noYobni',1,'2024-07-22 07:10:07','2024-07-25 07:08:02','unique12345',100015,'2024-07-22 07:10:07','2024-07-25 07:08:02','hadesDbSvcUser@172.19.0.1',0),('7ZjfZ6ijVRHoo3QAMMpxLJQ99JHp/zodVT+ozBFWhOBdVitfI+Fcgu2C+noYobni',1,'2025-05-15 05:27:42','2025-05-22 05:42:03','unique12345',100294,'2025-05-15 05:27:42','2025-05-15 05:42:03','hadesDbSvcUser@172.19.0.1',0),('81+OhKX+NtzJE6MvufcA+tKB7uPPmAjuNymPSwg/g5tdVitfI+Fcgu2C+noYobni',1,'2024-10-30 09:19:59','2024-10-30 09:20:04','unique12345',100114,'2024-10-30 09:19:59','2024-10-30 09:20:04','hadesDbSvcUser@172.19.0.1',0),('84DLqGx3Xl1HTTv5Uz9JdbvmwQ0JVVZF78dshyX7yAw=',1,'2024-05-24 10:19:25','2024-05-29 10:37:38','unique12345',100017,'2024-05-24 10:19:25','2024-05-29 10:37:38','hadesDbSvcUser@172.19.0.1',0),('86GimKIaqoMWFFfJsEm85BszbDJzo1atAUqVbwtWqkZdVitfI+Fcgu2C+noYobni',1,'2024-11-04 00:56:50','2024-11-11 13:04:32','unique12345',100027,'2024-11-04 12:56:50','2024-11-04 13:04:32','hadesDbSvcUser@172.19.0.1',0),('8ctwWQFk9ZBv9H7vvtzC6YdW3onH7S4tYqU9AcLykX1dVitfI+Fcgu2C+noYobni',1,'2024-11-27 02:12:28','2024-12-09 00:20:38','unique12345',100182,'2024-11-27 02:12:28','2024-12-02 00:20:38','hadesDbSvcUser@172.19.0.1',0),('8EHI+s9+tQN3UDDVdRKbP7dE84Y5kzezZsSwy13ccfQ=',1,'2024-07-17 04:00:16','2024-07-17 04:00:18','unique12345',100106,'2024-07-17 04:00:16','2024-07-17 04:00:18','hadesDbSvcUser@172.19.0.1',0),('8it3edg6FIzzpz6EabsiOG75joT0VGaw+/9Nv4cpcIFdVitfI+Fcgu2C+noYobni',1,'2024-06-17 10:04:14','2024-06-24 10:04:14','unique12345',100097,'2024-06-17 10:04:14','2024-06-17 10:04:14','hadesDbSvcUser@172.19.0.1',0),('8j+ZLrJ1N/djg2FJ7nBBCfev/QUPZeD6yzh9W8DEHIldVitfI+Fcgu2C+noYobni',1,'2024-12-20 02:27:31','2025-01-31 07:04:59','unique12345',100335,'2024-12-20 02:27:31','2025-01-24 07:04:59','hadesDbSvcUser@172.19.0.1',0),('8koXH89jJI7Sj/QD3Aiby4drwu1b8be1TqwyLHPZvQU=',1,'2025-03-05 10:01:48','2025-03-24 11:55:47','unique12345',100015,'2025-03-05 10:01:48','2025-03-24 11:55:47','hadesDbSvcUser@172.19.0.1',0),('8NA3tma4F09o2yEJXrVeV5zJ5IHQ/V55xJ8JQrDCQcNdVitfI+Fcgu2C+noYobni',1,'2024-09-23 10:33:03','2024-09-23 13:06:50','unique12345',100022,'2024-09-23 10:33:03','2024-09-23 13:06:50','hadesDbSvcUser@172.19.0.1',0),('8OzkIpG3iKPdpB36FMH7QTS0dMfGpR5upk9WkBXb8uZdVitfI+Fcgu2C+noYobni',1,'2024-05-30 08:59:07','2024-05-30 08:59:12','unique12345',100014,'2024-05-30 08:59:07','2024-05-30 08:59:12','hadesDbSvcUser@172.19.0.1',0),('8yB6y8cJSwc7Z46/3BzXJRY/aZhpU5q9vsApibv3M8RdVitfI+Fcgu2C+noYobni',1,'2024-07-29 06:44:02','2024-07-29 11:06:20','unique12345',100017,'2024-07-29 06:44:02','2024-07-29 11:06:20','hadesDbSvcUser@172.19.0.1',0),('95XLf2TME5O7beafHarsc6SZeVOCyORNhcvIxmI/srU=',1,'2024-10-25 06:59:40','2024-11-01 10:01:31','unique12345',100017,'2024-10-25 06:59:40','2024-10-25 10:01:31','hadesDbSvcUser@172.19.0.1',0),('9Ahbu5KqqUwgBgcDajV0a4Zqgqx9hHQR5vl5DjCIVBFdVitfI+Fcgu2C+noYobni',1,'2024-09-13 05:09:02','2024-09-20 06:26:23','unique12345',100214,'2024-09-13 05:09:02','2024-09-13 06:26:23','hadesDbSvcUser@172.19.0.1',0),('9BnoKZPC8pKU2IqNZP7UR3rZA+DINtLFrK3Qy20bJMNdVitfI+Fcgu2C+noYobni',1,'2024-09-20 00:14:55','2024-10-04 09:13:26','unique12345',100037,'2024-09-20 00:14:55','2024-09-27 09:13:26','hadesDbSvcUser@172.19.0.1',0),('9BUvR28qYnzvTw9MwNY9Xn8xKHQw72S2V1ckJeJVbMxdVitfI+Fcgu2C+noYobni',1,'2024-06-21 06:42:41','2024-06-28 06:42:41','unique12345',100103,'2024-06-21 06:42:41','2024-06-21 06:42:41','hadesDbSvcUser@172.19.0.1',0),('9gyuLpC63J9g6zLCivavfw8c880eoNt8ChzFlixufC9dVitfI+Fcgu2C+noYobni',1,'2024-05-28 05:27:03','2024-06-04 05:27:03','unique12345',100041,'2024-05-28 05:27:03','2024-05-28 05:27:03','hadesDbSvcUser@172.19.0.1',0),('9h9ffbRH1/9YRjJJf6W/iHU3fP8xeq9h2z9EfrVD0PNdVitfI+Fcgu2C+noYobni',1,'2025-03-12 06:59:14','2025-03-19 18:59:55','unique12345',100291,'2025-03-12 18:59:14','2025-03-12 18:59:55','hadesDbSvcUser@172.19.0.1',0),('9IbQBhZh3bQ4Yn9TJr1DCIyw2nC6ChoW1RJJ7ltbwyldVitfI+Fcgu2C+noYobni',1,'2024-10-29 07:37:57','2024-11-05 07:38:02','unique12345',100023,'2024-10-29 07:37:57','2024-10-29 07:38:02','hadesDbSvcUser@172.19.0.1',0),('9IzqKuy+oJ+rAM7seerfTsq+VZUodeOKBoy4GPhs3i5dVitfI+Fcgu2C+noYobni',1,'2024-09-05 00:44:55','2024-09-21 02:44:41','unique12345',100043,'2024-09-05 12:44:55','2024-09-14 02:44:41','hadesDbSvcUser@172.19.0.1',0),('9JPFCSKYSMA+Mzzxzyy34nahHt6QM2Jri/VSvPdcL4tdVitfI+Fcgu2C+noYobni',1,'2024-06-04 00:23:40','2024-06-11 13:49:22','unique12345',100014,'2024-06-04 12:23:40','2024-06-11 13:49:22','hadesDbSvcUser@172.19.0.1',0),('9Si3ScEmysqz+YXifpo3bm5KFJxbOkk3wsu7K6E91jddVitfI+Fcgu2C+noYobni',1,'2024-08-05 04:09:20','2024-08-05 04:10:22','unique12345',100106,'2024-08-05 04:09:20','2024-08-05 04:10:22','hadesDbSvcUser@172.19.0.1',0),('9T6pveGd4irZWa4tWx3KN1L2660q24AlTzuvPfeXK3RdVitfI+Fcgu2C+noYobni',1,'2024-07-16 08:28:00','2024-07-16 08:34:51','unique12345',100106,'2024-07-16 08:28:00','2024-07-16 08:34:51','hadesDbSvcUser@172.19.0.1',0),('9wa/omy7p+Hob6SP7HRdAKG7NQ3E4xFj8ic4ycJOPvNdVitfI+Fcgu2C+noYobni',1,'2024-08-01 10:33:27','2024-08-13 07:06:02','unique12345',100111,'2024-08-01 10:33:27','2024-08-06 07:06:02','hadesDbSvcUser@172.19.0.1',0),('9wpXfPMOL4Q7SyZalK4dXet5IJ8IQ9VvxJEcp1N4CnhdVitfI+Fcgu2C+noYobni',1,'2024-06-13 06:03:26','2024-06-20 06:03:26','unique12345',100074,'2024-06-13 06:03:26','2024-06-13 06:03:26','hadesDbSvcUser@172.19.0.1',0),('9yotS2GmMQEzD8gaN24NLDopv3uMqFVp8pO2/vRWn/ZdVitfI+Fcgu2C+noYobni',1,'2024-06-18 08:57:51','2024-06-18 09:01:10','unique12345',100061,'2024-06-18 08:57:51','2024-06-18 09:01:10','hadesDbSvcUser@172.19.0.1',0),('9ZK0WCrF+coEtJtNStACCUCD1HUiTJeUV/kJOnMuMDldVitfI+Fcgu2C+noYobni',1,'2024-05-21 11:04:43','2024-05-22 12:14:33','unique12345',100005,'2024-05-21 11:04:43','2024-05-22 12:14:33','hadesDbSvcUser@172.19.0.1',0),('a2YbmNt55MAoSGVxZBwb9tiYeKX1S9Dm0eyalsqMwaNdVitfI+Fcgu2C+noYobni',1,'2024-07-11 09:50:39','2024-07-11 10:38:00','unique12345',100106,'2024-07-11 09:50:39','2024-07-11 10:38:00','hadesDbSvcUser@172.19.0.1',0),('A3t7Vf9HudnTl2tYgL2oxs1N7WdIxqsTuTvPgeMRLFRdVitfI+Fcgu2C+noYobni',1,'2024-05-29 09:03:11','2024-05-29 09:03:14','unique12345',100039,'2024-05-29 09:03:11','2024-05-29 09:03:14','hadesDbSvcUser@172.19.0.1',0),('A8oacQMrAFqCiLbp6pIfcjrz0Ezx428yWo5dWXZ3yZVdVitfI+Fcgu2C+noYobni',1,'2024-07-29 00:50:32','2024-08-09 05:34:05','unique12345',100032,'2024-07-29 12:50:32','2024-08-02 05:34:05','hadesDbSvcUser@172.19.0.1',0),('ab1qE3wu73xHqM/PH0yj/NYD9+YsTtQFtgqy6yWjvSJdVitfI+Fcgu2C+noYobni',1,'2025-01-06 03:33:51','2025-01-21 14:51:26','unique12345',100182,'2025-01-06 15:33:51','2025-01-14 14:51:26','hadesDbSvcUser@172.19.0.1',0),('ac8/1yWUSfvCfU2XUO1RIN8A89ybWE7MDeEu4p9pc7tdVitfI+Fcgu2C+noYobni',1,'2025-01-08 07:20:14','2025-01-08 07:20:19','unique12345',100056,'2025-01-08 07:20:14','2025-01-08 07:20:19','hadesDbSvcUser@172.19.0.1',0),('AcBQJJD8iRZjdtWVOFwJLBFnCnbFWIw9FH7i6jjzqQ9dVitfI+Fcgu2C+noYobni',1,'2024-07-16 00:54:53','2024-07-16 12:55:09','unique12345',100106,'2024-07-16 12:54:53','2024-07-16 12:55:09','hadesDbSvcUser@172.19.0.1',0),('AEuE2aZzCO0Y3nA681Cq+yrex/6EgQcXBVgecTnmOTNdVitfI+Fcgu2C+noYobni',1,'2024-10-28 09:27:57','2024-10-28 09:28:24','unique12345',100043,'2024-10-28 09:27:57','2024-10-28 09:28:24','hadesDbSvcUser@172.19.0.1',0),('AfGXRvdt6nmiSLjkfP7e+5XnATvikmNGX4eIdUwhIvxdVitfI+Fcgu2C+noYobni',1,'2024-10-25 02:44:57','2024-11-01 02:45:49','unique12345',100238,'2024-10-25 02:44:57','2024-10-25 02:45:49','hadesDbSvcUser@172.19.0.1',0),('AfqQIOvsX9q0XB55fcEwzt/FI4YzA8YrH2sp0+uRSmhdVitfI+Fcgu2C+noYobni',1,'2024-07-22 02:36:48','2024-07-22 14:39:03','unique12345',100106,'2024-07-22 14:36:48','2024-07-22 14:39:03','hadesDbSvcUser@172.19.0.1',0),('agNfhdzX8bIcEpelpiZlEsXfVa+QO4Pq6/vB2zT8mbhdVitfI+Fcgu2C+noYobni',1,'2024-10-30 02:53:43','2024-11-06 14:59:36','unique12345',6030,'2024-10-30 14:53:43','2024-10-30 14:59:36','hadesDbSvcUser@172.19.0.1',0),('Aith21vl7EuInR0G8vUei/6nsxvJqlNoPXdPcaQTNeBdVitfI+Fcgu2C+noYobni',1,'2024-12-10 04:47:29','2024-12-10 04:47:32','unique12345',100047,'2024-12-10 04:47:29','2024-12-10 04:47:32','hadesDbSvcUser@172.19.0.1',0),('ajju20Ke/iumil64LrMBho4O33ofGZszz81EjmjX80ldVitfI+Fcgu2C+noYobni',1,'2024-06-17 07:31:31','2024-06-24 08:51:14','unique12345',100090,'2024-06-17 07:31:31','2024-06-17 08:51:14','hadesDbSvcUser@172.19.0.1',0),('AL+5z7IEDW4FChF/ourV0yxlMXcxDzos82bfWDwV0XVdVitfI+Fcgu2C+noYobni',1,'2024-12-11 09:40:27','2024-12-20 09:31:48','unique12345',100053,'2024-12-11 09:40:27','2024-12-13 09:31:48','hadesDbSvcUser@172.19.0.1',0),('alwdWUZI6ufFqaxXHTjskPDLlifZr0QoLLIqWvd39QtdVitfI+Fcgu2C+noYobni',1,'2024-07-01 05:00:39','2024-07-01 06:08:23','unique12345',100006,'2024-07-01 05:00:39','2024-07-01 06:08:23','hadesDbSvcUser@172.19.0.1',0),('AMI3GXf58dyHqvQQqlnNUDCLy78jXLIwNITw3XCwpf5dVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:42:41','2024-06-11 05:42:58','unique12345',100070,'2024-06-11 05:42:41','2024-06-11 05:42:58','hadesDbSvcUser@172.19.0.1',0),('aMWinTZzp3WFy+JDM3/GYUPKdOoeJ1b8vdI6BZzkz1hdVitfI+Fcgu2C+noYobni',1,'2024-10-30 07:01:14','2024-12-01 12:46:05','unique12345',100319,'2024-10-30 07:01:14','2024-11-24 12:46:05','hadesDbSvcUser@172.19.0.1',0),('An5NUqBAd3V7L20E11MHUveU03h7cXVLnzP4dG713xVdVitfI+Fcgu2C+noYobni',1,'2024-05-21 10:32:56','2024-05-28 10:32:56','unique12345',100007,'2024-05-21 10:32:56','2024-05-21 10:32:56','hadesDbSvcUser@172.19.0.1',0),('aNfMAlm+sf4ygehExktGgCuNuDbotXJC1jWarUtO80FdVitfI+Fcgu2C+noYobni',1,'2024-06-03 04:26:46','2024-07-01 04:54:55','unique12345',100006,'2024-06-03 04:26:46','2024-07-01 04:54:55','hadesDbSvcUser@172.19.0.1',0),('ap8gMosqh+RooZSea9Z6RNceYhTrHz1pU3ldIwi8gbo=',1,'2024-06-13 00:29:14','2024-06-13 12:34:59','unique12345',100080,'2024-06-13 12:29:14','2024-06-13 12:34:59','hadesDbSvcUser@172.19.0.1',0),('aQRCOzWY1vR3iQo0FxfRqQOuZg932dVdyDUZgvhg2i5dVitfI+Fcgu2C+noYobni',1,'2024-07-11 11:01:03','2024-07-11 11:01:46','unique12345',100017,'2024-07-11 11:01:03','2024-07-11 11:01:46','hadesDbSvcUser@172.19.0.1',0),('AU1TMmAncan/Dm5ReoPAmSKPsTShn7dfv4Nwk2089YxdVitfI+Fcgu2C+noYobni',1,'2024-06-11 06:07:53','2024-06-18 08:04:29','unique12345',100056,'2024-06-11 06:07:53','2024-06-18 08:04:29','hadesDbSvcUser@172.19.0.1',0),('avcz7nJQzGT4ZqhaV01hdDfNvINBPQFBQ5MDt83zj7FdVitfI+Fcgu2C+noYobni',1,'2024-11-15 09:20:04','2024-11-22 09:20:47','unique12345',100182,'2024-11-15 09:20:04','2024-11-15 09:20:47','hadesDbSvcUser@172.19.0.1',0),('AWeesxE2CinHrWNGsqsOd7fmxNgPbX3tsPSSN7v3Up1dVitfI+Fcgu2C+noYobni',1,'2024-11-18 07:27:42','2024-11-25 07:33:17','unique12345',100073,'2024-11-18 07:27:42','2024-11-18 07:33:17','hadesDbSvcUser@172.19.0.1',0),('awIg1sdeSuBsl1n/En/31wWtzuEawHLRtvyoiyqzHGRdVitfI+Fcgu2C+noYobni',1,'2024-12-17 01:36:15','2024-12-26 05:20:55','unique12345',100330,'2024-12-17 13:36:15','2024-12-19 05:20:55','hadesDbSvcUser@172.19.0.1',0),('AxCZtf8AuqbIPkWmGp9okB9cEuoCPWkoB+fTG02cZRFdVitfI+Fcgu2C+noYobni',1,'2024-06-10 09:21:35','2024-06-13 08:50:57','unique12345',100017,'2024-06-10 09:21:35','2024-06-13 08:50:57','hadesDbSvcUser@172.19.0.1',0),('AYvVNJdPv+GgWN3tvY6c8bC2DEp2T848+ekYF7638IJdVitfI+Fcgu2C+noYobni',1,'2024-07-01 04:47:39','2024-07-02 07:29:59','unique12345',100005,'2024-07-01 04:47:39','2024-07-02 07:29:59','hadesDbSvcUser@172.19.0.1',0),('az65pNo7Z9Mw7u1t95M1TnSqKGuKY7G1GYt08sa34xNdVitfI+Fcgu2C+noYobni',1,'2024-10-01 06:08:57','2024-10-01 11:43:15','unique12345',100112,'2024-10-01 06:08:57','2024-10-01 11:43:15','hadesDbSvcUser@172.19.0.1',0),('B3YMS/zaFeu736Ah6gaIo3lZDzQFMSRx8uEBoFI3v0ldVitfI+Fcgu2C+noYobni',1,'2024-06-26 09:15:19','2024-06-26 09:15:48','unique12345',100014,'2024-06-26 09:15:19','2024-06-26 09:15:48','hadesDbSvcUser@172.19.0.1',0),('B5CHQNa6Tr/IO0x3crcmifZi7Cawqx53UhiRwT0YLto=',1,'2024-07-12 07:28:22','2024-07-16 07:24:13','unique12345',100015,'2024-07-12 07:28:22','2024-07-16 07:24:13','hadesDbSvcUser@172.19.0.1',0),('B8/fZRzvvIMZnWSutUrzbYnVN8weJBqGnkmKqI1HZlldVitfI+Fcgu2C+noYobni',1,'2025-03-17 02:18:41','2025-03-17 13:18:36','unique12345',100526,'2025-03-17 02:18:41','2025-03-17 13:18:36','hadesDbSvcUser@172.19.0.1',0),('B8vO5F58HEzdf8mGpBxKFyqU5nDRtA5kRVUfVSYRDYldVitfI+Fcgu2C+noYobni',1,'2024-06-20 08:31:44','2024-06-20 08:38:33','unique12345',100061,'2024-06-20 08:31:44','2024-06-20 08:38:33','hadesDbSvcUser@172.19.0.1',0),('bFOjLRjxvypxxkJYGuRq+CqwtaZ6/B+bOh2sRT4Wu9FdVitfI+Fcgu2C+noYobni',1,'2024-06-07 09:15:13','2024-07-16 05:55:02','unique12345',100037,'2024-06-07 09:15:13','2024-07-09 05:55:02','hadesDbSvcUser@172.19.0.1',0),('BFPhv3uXFNPiTCzNXWF3D57FdFqRTnqRKqcHn3XMmVVdVitfI+Fcgu2C+noYobni',1,'2024-06-11 06:01:11','2024-07-09 08:05:17','unique12345',100071,'2024-06-11 06:01:11','2024-07-02 08:05:17','hadesDbSvcUser@172.19.0.1',0),('BGSqpQlSCU2fwNJZ5JmBe39IIY5zd9pUysmvGt19pMVdVitfI+Fcgu2C+noYobni',1,'2024-10-11 07:23:27','2024-10-11 08:00:38','unique12345',100015,'2024-10-11 07:23:27','2024-10-11 08:00:38','hadesDbSvcUser@172.19.0.1',0),('bIBDVLNjvxdyLAUdcJvuqXplciBZprxmRuOy+JezYxldVitfI+Fcgu2C+noYobni',1,'2024-07-11 09:19:28','2024-07-11 09:20:21','unique12345',100106,'2024-07-11 09:19:28','2024-07-11 09:20:21','hadesDbSvcUser@172.19.0.1',0),('bj0wCQN0vnIZ28RwYBM+KTlu066O/fHe8/V0CtI0/OtdVitfI+Fcgu2C+noYobni',1,'2024-09-27 05:25:03','2024-10-04 08:25:17','unique12345',100032,'2024-09-27 05:25:03','2024-09-27 08:25:17','hadesDbSvcUser@172.19.0.1',0),('bK5fPhe+VrKmcA5LD9e01Bgd/NxeGIafz2FyIYudzcRdVitfI+Fcgu2C+noYobni',1,'2024-08-21 06:26:45','2024-08-28 10:31:47','unique12345',100052,'2024-08-21 06:26:45','2024-08-21 10:31:47','hadesDbSvcUser@172.19.0.1',0),('bKldT1osnqhUInTjPRnPhTMUl2v5j/zt+A9kpCJjWpddVitfI+Fcgu2C+noYobni',1,'2024-09-20 09:15:56','2024-09-20 09:16:59','unique12345',100039,'2024-09-20 09:15:56','2024-09-20 09:16:59','hadesDbSvcUser@172.19.0.1',0),('bLBu1lhXKNb84jfzKDcLmyRFnPUVRoBZ1uq+AsXv7EldVitfI+Fcgu2C+noYobni',1,'2024-06-11 06:59:56','2024-06-11 07:20:44','unique12345',100005,'2024-06-11 06:59:56','2024-06-11 07:20:44','hadesDbSvcUser@172.19.0.1',0),('BNZzkxAtA+FHZXU9O5ZnfbEe5P3NiL+4IY+h3AVxCxpdVitfI+Fcgu2C+noYobni',1,'2024-10-24 08:43:36','2024-10-31 20:47:19','unique12345',100308,'2024-10-24 20:43:36','2024-10-24 20:47:19','hadesDbSvcUser@172.19.0.1',0),('bsrKg2OQTdMO87niJezQMtA2weyhStcVaTq4E6EGk0hdVitfI+Fcgu2C+noYobni',1,'2024-05-30 08:59:45','2024-06-06 06:17:12','unique12345',100015,'2024-05-30 08:59:45','2024-06-06 06:17:12','hadesDbSvcUser@172.19.0.1',0),('bUzis6cZwyiOIRPEFZOP+w5NNh/2wWydnEQYAnM+vrldVitfI+Fcgu2C+noYobni',1,'2024-07-01 07:17:01','2024-07-01 12:14:48','unique12345',100006,'2024-07-01 07:17:01','2024-07-01 12:14:48','hadesDbSvcUser@172.19.0.1',0),('bwh4/puEl9sHYDgiSLqgXQIFMOnbS5A0b80DA3YbmotdVitfI+Fcgu2C+noYobni',1,'2024-06-14 09:43:15','2024-06-20 11:52:40','unique12345',100017,'2024-06-14 09:43:15','2024-06-20 11:52:40','hadesDbSvcUser@172.19.0.1',0),('BXfg5WEseZsFpJM496/NfwLi4VkAplZTdD+H3cOAOU9dVitfI+Fcgu2C+noYobni',1,'2024-06-06 06:20:06','2024-06-06 06:34:37','unique12345',100015,'2024-06-06 06:20:06','2024-06-06 06:34:37','hadesDbSvcUser@172.19.0.1',0),('By+VsLMsfCE8HeryzBpF05zhZEQEmZaBV/FM8Qi90F5dVitfI+Fcgu2C+noYobni',1,'2024-06-06 06:03:47','2024-06-13 09:47:09','unique12345',100049,'2024-06-06 06:03:47','2024-06-06 09:47:09','hadesDbSvcUser@172.19.0.1',0),('c/YozYX4xAu3CPisk4OwIGw0u/stmj4sDvCQbIlbjK9dVitfI+Fcgu2C+noYobni',1,'2024-06-20 11:53:02','2024-07-01 07:34:27','unique12345',100017,'2024-06-20 11:53:02','2024-07-01 07:34:27','hadesDbSvcUser@172.19.0.1',0),('C5fgPjiVTGml6lB4kkQa4pbDfAnFcVwSLs819Qm+38pdVitfI+Fcgu2C+noYobni',1,'2024-10-14 07:55:28','2024-11-11 06:54:34','unique12345',100213,'2024-10-14 07:55:28','2024-11-04 06:54:34','hadesDbSvcUser@172.19.0.1',0),('C74IPxlVL3THzlzDxFl9OcAVXDU0EQAh8LL/OtoZFgRdVitfI+Fcgu2C+noYobni',1,'2024-06-13 00:45:20','2024-06-13 12:50:23','unique12345',100017,'2024-06-13 12:45:20','2024-06-13 12:50:23','hadesDbSvcUser@172.19.0.1',0),('C8Sddhhy5hG+l6uQZxg9L91Tp1J3Qk7mutD92QVRCCddVitfI+Fcgu2C+noYobni',1,'2024-11-05 10:55:57','2024-11-07 09:20:17','unique12345',100064,'2024-11-05 10:55:57','2024-11-07 09:20:17','hadesDbSvcUser@172.19.0.1',0),('cACgUwpxZrCEMA8M/aTriWPduIiL4s85yamikrSalA1dVitfI+Fcgu2C+noYobni',1,'2024-08-20 05:19:27','2024-08-27 06:56:18','unique12345',100062,'2024-08-20 05:19:27','2024-08-20 06:56:18','hadesDbSvcUser@172.19.0.1',0),('cCo9tdvCk4rZPnk+VKQ82AcMVE/6I7ZSY1xk/+gNyRFdVitfI+Fcgu2C+noYobni',1,'2024-12-10 04:47:38','2024-12-17 04:49:01','unique12345',100021,'2024-12-10 04:47:38','2024-12-10 04:49:01','hadesDbSvcUser@172.19.0.1',0),('ce9wBV+HA+3hIXI7/xj+fMhmO/+3MI28WHx5VGoFqoVdVitfI+Fcgu2C+noYobni',1,'2024-07-08 06:15:14','2024-07-08 06:19:08','unique12345',100015,'2024-07-08 06:15:14','2024-07-08 06:19:08','hadesDbSvcUser@172.19.0.1',0),('chUKfIy/cSUYxbqQzopjdsaZ6335hGYZbnbmXtqWGdtdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:11:26','2024-06-12 10:56:06','unique12345',100064,'2024-06-11 05:11:26','2024-06-12 10:56:06','hadesDbSvcUser@172.19.0.1',0),('CjNnuekJPuX9tKKTF9Z0bo1SCsEAnUyMAy6eULKqrTtdVitfI+Fcgu2C+noYobni',1,'2024-06-20 09:02:28','2024-07-01 06:26:38','unique12345',100015,'2024-06-20 09:02:28','2024-07-01 06:26:38','hadesDbSvcUser@172.19.0.1',0),('CLcseBy5XkZ1j16WL9mbG7vAzeK8vRmy6Xcu45GdCVRdVitfI+Fcgu2C+noYobni',1,'2024-08-01 06:16:06','2024-08-01 11:06:32','unique12345',100015,'2024-08-01 06:16:06','2024-08-01 11:06:32','hadesDbSvcUser@172.19.0.1',0),('cMiDYWRGGTSEnJoSANFrGp6IgUWH2eLig90WYxjFFildVitfI+Fcgu2C+noYobni',1,'2024-09-04 05:24:44','2024-09-06 06:35:11','unique12345',100017,'2024-09-04 05:24:44','2024-09-06 06:35:11','hadesDbSvcUser@172.19.0.1',0),('Cn/5fZVJqgNihrYzG/abz3Gz76Tr7aeGv8FzRcfLl0ldVitfI+Fcgu2C+noYobni',1,'2024-07-01 11:05:24','2024-07-04 07:10:21','unique12345',100015,'2024-07-01 11:05:24','2024-07-04 07:10:21','hadesDbSvcUser@172.19.0.1',0),('cPn2T0eSEK4IMBEA90/rYKuvtkYzGlwM30Gt10Y1MmpdVitfI+Fcgu2C+noYobni',1,'2024-08-01 02:00:01','2024-08-09 01:32:17','unique12345',100037,'2024-08-01 02:00:01','2024-08-02 01:32:17','hadesDbSvcUser@172.19.0.1',0),('CRMvYv4vu4ux7FVFuImxuRqpPpkI7WZ5Ta8+tRyFhRddVitfI+Fcgu2C+noYobni',1,'2025-04-24 05:53:05','2025-05-01 05:53:18','unique12345',100335,'2025-04-24 05:53:05','2025-04-24 05:53:18','hadesDbSvcUser@172.19.0.1',0),('CS0zEqRNnUvWXJGmKLWOLdM1R1KwDhRe3uiNMS0nSfxdVitfI+Fcgu2C+noYobni',1,'2025-06-11 11:42:09','2025-06-18 11:42:18','unique12345',100112,'2025-06-11 11:42:09','2025-06-11 11:42:18','hadesDbSvcUser@172.19.0.1',0),('csOp9vND09pkRK1GS6xXKtbYa3mhlwkQneWv1RLpdRZdVitfI+Fcgu2C+noYobni',1,'2024-07-16 08:43:41','2024-07-23 13:45:46','unique12345',100079,'2024-07-16 08:43:41','2024-07-16 13:45:46','hadesDbSvcUser@172.19.0.1',0),('cSwCG4/TsFl/hwkIBrgXROjX9Wp4lsPYJIQQSeyvTVRdVitfI+Fcgu2C+noYobni',1,'2025-01-08 05:16:37','2025-01-17 07:29:46','unique12345',100043,'2025-01-08 17:16:37','2025-01-10 07:29:46','hadesDbSvcUser@172.19.0.1',0),('CtkaOEJ0KYzDPcE1Zru1zaclxDXBvgEfc9bxQcYunW1dVitfI+Fcgu2C+noYobni',1,'2024-06-06 05:47:52','2024-06-14 05:09:29','unique12345',100026,'2024-06-06 05:47:52','2024-06-07 05:09:29','hadesDbSvcUser@172.19.0.1',0),('cTT7DRxQ8OEgBoHztfaR+xNGjm8sQZsDb1Nlj+aStQ5dVitfI+Fcgu2C+noYobni',1,'2024-10-24 05:01:26','2024-10-25 06:58:54','unique12345',100017,'2024-10-24 05:01:26','2024-10-25 06:58:54','hadesDbSvcUser@172.19.0.1',0),('CTuLoiK+vK1oSIvO8Jocaqc25QMIRgPz3ZG+UDa3KtxdVitfI+Fcgu2C+noYobni',1,'2024-07-29 06:32:36','2024-07-29 06:33:28','unique12345',100017,'2024-07-29 06:32:36','2024-07-29 06:33:28','hadesDbSvcUser@172.19.0.1',0),('CTzw1TBYq61du1Vy7xs+nOdFfHFMa6Y0sMpoAAEagf1dVitfI+Fcgu2C+noYobni',1,'2024-09-06 09:52:13','2024-10-01 09:41:34','unique12345',100017,'2024-09-06 09:52:13','2024-09-24 09:41:34','hadesDbSvcUser@172.19.0.1',0),('cwLh0CZSmKQSBGzWDPj6wrysgrd32hzmy+Oni8mxdsFdVitfI+Fcgu2C+noYobni',1,'2024-07-11 11:32:06','2024-07-11 11:32:11','unique12345',100106,'2024-07-11 11:32:06','2024-07-11 11:32:11','hadesDbSvcUser@172.19.0.1',0),('d1lcgntiHW4GGgpmRBGFUhv7JaOwgTRYsF9enoQ8gp5dVitfI+Fcgu2C+noYobni',1,'2024-07-16 00:55:12','2024-07-16 12:57:50','unique12345',100106,'2024-07-16 12:55:12','2024-07-16 12:57:50','hadesDbSvcUser@172.19.0.1',0),('D37CHQPCApAmstW0i0Md5AJ4zMiNNmpQ+t1RdKCY+05dVitfI+Fcgu2C+noYobni',1,'2024-09-12 00:06:20','2024-09-19 12:29:50','unique12345',100114,'2024-09-12 12:06:20','2024-09-12 12:29:50','hadesDbSvcUser@172.19.0.1',0),('D3yk+vlhSvn3FDEeDRJzVjQc3kpU1j8OfPoEupFntqRdVitfI+Fcgu2C+noYobni',1,'2025-02-11 06:43:10','2025-02-21 05:40:29','unique12345',100005,'2025-02-11 06:43:10','2025-02-14 05:40:29','hadesDbSvcUser@172.19.0.1',0),('d4xGQqE6gnE2m0WBmlRywvsjv6FK6vlrZDf7hwGrv31dVitfI+Fcgu2C+noYobni',1,'2024-06-18 08:51:20','2024-06-18 08:52:29','unique12345',100099,'2024-06-18 08:51:20','2024-06-18 08:52:29','hadesDbSvcUser@172.19.0.1',0),('d9+8ft7iHlNFx7IZe8dkcTq25O9k/gvbmdsZ1qPGQoldVitfI+Fcgu2C+noYobni',1,'2025-01-24 11:33:13','2025-01-24 13:34:02','unique12345',100294,'2025-01-24 11:33:13','2025-01-24 13:34:02','hadesDbSvcUser@172.19.0.1',0),('dAto/kZCO6JsqWE36Ugyztaw7CpqDu+7gbcCmAItcJBdVitfI+Fcgu2C+noYobni',1,'2024-06-10 01:11:30','2024-06-17 01:11:30','unique12345',100040,'2024-06-10 01:11:30','2024-06-10 01:11:30','hadesDbSvcUser@172.19.0.1',0),('dBe/zvgipGQPQSgroC2lo1ph6pvzOrDHS4ndNLAa+FpdVitfI+Fcgu2C+noYobni',1,'2024-06-17 05:21:03','2024-07-01 01:43:06','unique12345',100088,'2024-06-17 05:21:03','2024-07-01 01:43:06','hadesDbSvcUser@172.19.0.1',0),('dc6eQB+0Ec9dsko2+ME9S+hkCYptJC0SYIJ5jvGUG1RdVitfI+Fcgu2C+noYobni',1,'2024-10-18 02:29:17','2024-11-01 07:06:50','unique12345',100037,'2024-10-18 02:29:17','2024-10-25 07:06:50','hadesDbSvcUser@172.19.0.1',0),('ddUEXB5zh6/N5ZeoPnWxWdormZSz+g0waI+BO9QdsYhdVitfI+Fcgu2C+noYobni',1,'2024-09-19 02:33:41','2024-09-27 05:49:28','unique12345',100088,'2024-09-19 02:33:41','2024-09-20 05:49:28','hadesDbSvcUser@172.19.0.1',0),('DGibXOsSdNoRw7yiK2OB+ZJT5TxPiR5G6WVJh8dYJaFdVitfI+Fcgu2C+noYobni',1,'2024-10-22 08:26:04','2024-10-31 10:16:54','unique12345',100032,'2024-10-22 08:26:04','2024-10-24 10:16:54','hadesDbSvcUser@172.19.0.1',0),('DJ6sT8XJmI9u2BOjvpAyzj1WVrFclBgoTsfzR301idtdVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:28:31','2024-05-24 10:28:35','unique12345',100022,'2024-05-24 10:28:31','2024-05-24 10:28:35','hadesDbSvcUser@172.19.0.1',0),('DjeBKnVZwk2Y4yVTICMmAHQ3trO2tL0XZK59/3iYlp5dVitfI+Fcgu2C+noYobni',1,'2024-07-01 06:26:39','2024-07-01 06:26:54','unique12345',100015,'2024-07-01 06:26:39','2024-07-01 06:26:54','hadesDbSvcUser@172.19.0.1',0),('DktSO/XCywQvDMT4FZFwKes2zbwLKTsZ8oIMohQOaeVdVitfI+Fcgu2C+noYobni',1,'2024-06-13 05:08:32','2024-06-20 09:28:11','unique12345',100064,'2024-06-13 05:08:32','2024-06-20 09:28:11','hadesDbSvcUser@172.19.0.1',0),('dkzNArOxoCv1OpBsaW+nSbq3c2jOQlDr9FFQwkXl7rddVitfI+Fcgu2C+noYobni',1,'2024-07-11 11:31:10','2024-07-11 11:31:32','unique12345',100015,'2024-07-11 11:31:10','2024-07-11 11:31:32','hadesDbSvcUser@172.19.0.1',0),('DlALL6h0KYtcUHvFjMlCkzBcZwsYe054IvP7Rulf1ZFdVitfI+Fcgu2C+noYobni',1,'2024-10-14 09:15:00','2024-10-21 09:15:00','unique12345',100284,'2024-10-14 09:15:00','2024-10-14 09:15:00','hadesDbSvcUser@172.19.0.1',0),('Dm+tudWhD6eELIYybZYxuaYyeU/0MrRsBXZHJcehPC1dVitfI+Fcgu2C+noYobni',1,'2024-11-08 01:24:44','2024-12-25 15:57:15','unique12345',100088,'2024-11-08 01:24:44','2024-12-18 15:57:15','hadesDbSvcUser@172.19.0.1',0),('DMb6F6nBa9T2F7B4AMOFIygjFGqy2E9lG/61O9PD5KVdVitfI+Fcgu2C+noYobni',1,'2025-03-18 07:25:13','2025-03-31 07:15:44','unique12345',100022,'2025-03-18 07:25:13','2025-03-24 07:15:44','hadesDbSvcUser@172.19.0.1',0),('dN33yqphmWavp8O9mZi1CYcSX1On3uSccdvta1Jy1nJdVitfI+Fcgu2C+noYobni',1,'2024-05-21 10:49:58','2024-05-28 10:49:58','unique12345',100010,'2024-05-21 10:49:58','2024-05-21 10:49:58','hadesDbSvcUser@172.19.0.1',0),('dn4CztDe4nCXKSnbWE1+KcAgaLSKOjq7ukw1JspAgxhdVitfI+Fcgu2C+noYobni',1,'2024-10-25 06:22:31','2024-11-01 06:28:12','unique12345',100104,'2024-10-25 06:22:31','2024-10-25 06:28:12','hadesDbSvcUser@172.19.0.1',0),('dNaMhI8xxknOsMOHqh6eRvvPXWpP9pNTzd9fOy6KQp1dVitfI+Fcgu2C+noYobni',1,'2024-08-20 10:03:22','2024-09-02 04:42:14','unique12345',100138,'2024-08-20 10:03:22','2024-08-26 04:42:14','hadesDbSvcUser@172.19.0.1',0),('DNbLqgS/e14CBPHfVEPsmLcSt9GoI6qG6ZkaLlvi3aNdVitfI+Fcgu2C+noYobni',1,'2024-07-10 06:16:43','2024-09-23 10:06:32','unique12345',100022,'2024-07-10 06:16:43','2024-09-23 10:06:32','hadesDbSvcUser@172.19.0.1',0),('DONSv+Is8stWvxMUTsMZMiCRBAlMl4lo56GIJCmE/cpdVitfI+Fcgu2C+noYobni',1,'2024-05-28 05:22:02','2024-06-04 05:22:02','unique12345',100040,'2024-05-28 05:22:02','2024-05-28 05:22:02','hadesDbSvcUser@172.19.0.1',0),('dqq5ggdJ5qh6e3OWkBGho1pfu4XbEfqmpd89HN2+Ew5dVitfI+Fcgu2C+noYobni',1,'2024-06-18 07:59:30','2024-06-18 08:06:37','unique12345',100061,'2024-06-18 07:59:30','2024-06-18 08:06:37','hadesDbSvcUser@172.19.0.1',0),('DQwOKSUsHojPImHq60O0ssZv3FNAiEiGCtr6MK9jPTZdVitfI+Fcgu2C+noYobni',1,'2024-11-04 06:46:36','2024-11-04 06:50:04','unique12345',100015,'2024-11-04 06:46:36','2024-11-04 06:50:04','hadesDbSvcUser@172.19.0.1',0),('drbevmAMQSc23fkvnHlnpwSfckr44Kz9bh54YUR/n/9dVitfI+Fcgu2C+noYobni',1,'2024-06-18 08:20:55','2024-06-18 08:51:13','unique12345',100061,'2024-06-18 08:20:55','2024-06-18 08:51:13','hadesDbSvcUser@172.19.0.1',0),('drpIW9D1tUrKr1LbgRs5QQ1R0FtHR6IV3F6kMfCbPNNdVitfI+Fcgu2C+noYobni',1,'2024-06-17 05:13:57','2024-06-24 07:17:28','unique12345',100046,'2024-06-17 05:13:57','2024-06-17 07:17:28','hadesDbSvcUser@172.19.0.1',0),('dSpoFt2xyvv3zvWCsr4Kpwa59P/HuN7SHdTlfY9JwVQ=',1,'2024-05-29 10:37:52','2024-05-29 10:47:30','unique12345',100017,'2024-05-29 10:37:52','2024-05-29 10:47:30','hadesDbSvcUser@172.19.0.1',0),('DTOk/ZJzP1IuubXm7ES+bkIcYFlk00+3LyhjwQX9yL5dVitfI+Fcgu2C+noYobni',1,'2025-01-13 06:08:36','2025-01-13 06:08:57','unique12345',100033,'2025-01-13 06:08:36','2025-01-13 06:08:57','hadesDbSvcUser@172.19.0.1',0),('DV1o+PEAtSsdngMPuf9SasGgo7aD1nURqlrU+/OpRVU=',1,'2024-07-30 01:20:20','2024-08-06 01:20:20','unique12345',100116,'2024-07-30 13:20:20','2024-07-30 13:20:20','hadesDbSvcUser@172.19.0.1',0),('dXpDSeHzs9wo7BDhlYbaTPjhsQeAdt5q084D1//5HhFdVitfI+Fcgu2C+noYobni',1,'2025-02-24 11:32:09','2025-03-03 11:32:28','unique12345',100111,'2025-02-24 11:32:09','2025-02-24 11:32:28','hadesDbSvcUser@172.19.0.1',0),('E1l2J8E9LWAEfJHm9zK7AN2g5vnilTjmoykGU+MzefBdVitfI+Fcgu2C+noYobni',1,'2024-08-20 11:46:29','2024-08-21 05:31:41','unique12345',100015,'2024-08-20 11:46:29','2024-08-21 05:31:41','hadesDbSvcUser@172.19.0.1',0),('e3qVUmnY/2+6K7Q3sEwueWUcAFXJo6Tv0TqF5WoBO+Q=',1,'2024-05-29 09:04:19','2024-05-29 09:11:45','unique12345',100039,'2024-05-29 09:04:19','2024-05-29 09:11:45','hadesDbSvcUser@172.19.0.1',0),('e3rN1vVv4y3woD0vBLbfes+s0k6gzAH+86XciKz7GlNdVitfI+Fcgu2C+noYobni',1,'2024-08-19 11:53:27','2024-08-20 11:46:19','unique12345',100015,'2024-08-19 11:53:27','2024-08-20 11:46:19','hadesDbSvcUser@172.19.0.1',0),('e6TWJ8S6ULK9R9SlwAebezuGG0MrYcGSklRll4R4q1BdVitfI+Fcgu2C+noYobni',1,'2024-05-30 07:32:06','2024-05-30 07:32:15','unique12345',100039,'2024-05-30 07:32:06','2024-05-30 07:32:15','hadesDbSvcUser@172.19.0.1',0),('E7Zwt5JtUbuVvlxWuZDiiutQgFHRM75LPX9yidOrUGQ=',1,'2024-06-14 08:02:36','2024-06-17 01:53:34','unique12345',100039,'2024-06-14 08:02:36','2024-06-17 01:53:34','hadesDbSvcUser@172.19.0.1',0),('Ea9KaM8Vxo+FlKAufJAM3ZY+m/oawCUr8Wxd1yZxOlBdVitfI+Fcgu2C+noYobni',1,'2024-07-31 07:22:37','2024-08-07 07:22:37','unique12345',100131,'2024-07-31 07:22:37','2024-07-31 07:22:37','hadesDbSvcUser@172.19.0.1',0),('Eazjxm/okD2QvawFWkFiG9F/OFqVcMPqYGe+AB4y+UxdVitfI+Fcgu2C+noYobni',1,'2024-11-20 01:46:52','2024-11-26 12:16:18','unique12345',100015,'2024-11-20 13:46:52','2024-11-26 12:16:18','hadesDbSvcUser@172.19.0.1',0),('ebzuuL9E5JjL2EDzrqqRy4bzcPJiJ9y8eL5uHzi2o+BdVitfI+Fcgu2C+noYobni',1,'2024-11-08 01:14:35','2024-11-19 08:47:00','unique12345',100043,'2024-11-08 13:14:35','2024-11-12 08:47:00','hadesDbSvcUser@172.19.0.1',0),('EcFo3ToKo00RStvxfC+SKfdDFUUVPf/miBNe9U9G5Z5dVitfI+Fcgu2C+noYobni',1,'2024-07-29 06:33:46','2024-07-29 06:43:17','unique12345',100017,'2024-07-29 06:33:46','2024-07-29 06:43:17','hadesDbSvcUser@172.19.0.1',0),('EeEhhNpf8kI+OjPZsv1biIWHXDni6os8Z8AeBEhXrs8=',1,'2024-10-17 05:01:39','2024-10-17 05:01:47','unique12345',100113,'2024-10-17 05:01:39','2024-10-17 05:01:47','hadesDbSvcUser@172.19.0.1',0),('eeIFXi3xVlgxRHupkXMpk8lWMVShonLV2PnJitwDwZ1dVitfI+Fcgu2C+noYobni',1,'2024-12-09 05:29:57','2024-12-16 05:29:57','unique12345',100394,'2024-12-09 05:29:57','2024-12-09 05:29:57','hadesDbSvcUser@172.19.0.1',0),('eg76RlcEUJjWvwu28cKtwgw7oSFs9vZvCfBu2/KewUVdVitfI+Fcgu2C+noYobni',1,'2024-07-29 06:29:07','2024-07-29 06:30:04','unique12345',100017,'2024-07-29 06:29:07','2024-07-29 06:30:04','hadesDbSvcUser@172.19.0.1',0),('Ehm+LbKjGBPq//EeKHhLQ8rIwBXD+WJ+eeyoOKmQVhNdVitfI+Fcgu2C+noYobni',1,'2024-09-27 09:07:34','2024-10-04 09:07:37','unique12345',100039,'2024-09-27 09:07:34','2024-09-27 09:07:37','hadesDbSvcUser@172.19.0.1',0),('EO1KMMbirG0io0Op2w2YEiGUkOI2pY888+2kOigjxO1dVitfI+Fcgu2C+noYobni',1,'2024-10-01 11:49:14','2024-10-10 06:20:11','unique12345',100112,'2024-10-01 11:49:14','2024-10-03 06:20:11','hadesDbSvcUser@172.19.0.1',0),('eO29Wy94p0EERjv9eLaD0W7c+h6ZPLE3I/gy3zWbzOZdVitfI+Fcgu2C+noYobni',1,'2024-10-10 00:07:44','2024-10-10 12:31:22','unique12345',100015,'2024-10-10 12:07:44','2024-10-10 12:31:22','hadesDbSvcUser@172.19.0.1',0),('ErrUhXqq/wiAGDXPMe5+mjrcUHPXwKU95RWU0ZABghZdVitfI+Fcgu2C+noYobni',1,'2025-01-08 10:39:52','2025-01-08 11:51:36','unique12345',100329,'2025-01-08 10:39:52','2025-01-08 11:51:36','hadesDbSvcUser@172.19.0.1',0),('eSochceO6drKRJCk9S4az7WaU1HZZybVvlUhFnuHGQNdVitfI+Fcgu2C+noYobni',1,'2024-05-27 05:15:31','2024-06-03 05:16:02','unique12345',100036,'2024-05-27 05:15:31','2024-05-27 05:16:02','hadesDbSvcUser@172.19.0.1',0),('eTgY6VbTIwm4tCcIgKdzY6vQklaMZ1CN4cu1abR63UBdVitfI+Fcgu2C+noYobni',1,'2024-08-05 04:16:20','2024-08-05 04:22:50','unique12345',100106,'2024-08-05 04:16:20','2024-08-05 04:22:50','hadesDbSvcUser@172.19.0.1',0),('EUZJytLHkjRVv2MJPLsT0CoIQGC/c2AW0tO/Cbh91ZZdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:09:56','2024-06-18 07:59:21','unique12345',100061,'2024-06-11 05:09:56','2024-06-18 07:59:21','hadesDbSvcUser@172.19.0.1',0),('EvEhC23+6ysaMOUCgD4oJRZaKUtFgvi3s9Bq7TEOd/BdVitfI+Fcgu2C+noYobni',1,'2024-08-07 08:11:01','2024-08-14 08:11:01','unique12345',100134,'2024-08-07 08:11:01','2024-08-07 08:11:01','hadesDbSvcUser@172.19.0.1',0),('ExnzncGPgEqwSt4iuuTLW1maqna7EhE88GcVt0z+8vhdVitfI+Fcgu2C+noYobni',1,'2024-07-11 08:12:29','2024-07-11 08:53:05','unique12345',100106,'2024-07-11 08:12:29','2024-07-11 08:53:05','hadesDbSvcUser@172.19.0.1',0),('F/UXtLEru/fpROdcgj5kiYCHkrdWsMmadKk8GXOkWjxdVitfI+Fcgu2C+noYobni',1,'2024-08-28 11:06:18','2024-08-29 15:02:09','unique12345',100015,'2024-08-28 11:06:18','2024-08-29 15:02:09','hadesDbSvcUser@172.19.0.1',0),('f1ZtZYXJkx2LONZPctra0jIHgVBB+fXR2JwTVijGL9xdVitfI+Fcgu2C+noYobni',1,'2025-03-26 00:03:14','2025-04-03 06:23:02','unique12345',100033,'2025-03-26 12:03:14','2025-03-27 06:23:02','hadesDbSvcUser@172.19.0.1',0),('f5UTkB7KyLw24T/AlD33iZBXd+yDUfvOVeabPtycontdVitfI+Fcgu2C+noYobni',1,'2024-10-09 11:31:16','2024-10-21 08:19:23','unique12345',100017,'2024-10-09 11:31:16','2024-10-14 08:19:23','hadesDbSvcUser@172.19.0.1',0),('F7URNuIOYqoPPNGXuarjuqPhQ4yi7fJ3MePeeWc6gDpdVitfI+Fcgu2C+noYobni',1,'2025-02-18 06:15:44','2025-02-25 06:51:55','unique12345',100064,'2025-02-18 06:15:44','2025-02-18 06:51:55','hadesDbSvcUser@172.19.0.1',0),('FAgHQebpLXqZkhJQOacR3FDyjQnyCz3NJCzDRfUXW71dVitfI+Fcgu2C+noYobni',1,'2024-05-21 10:49:58','2024-05-28 10:49:58','unique12345',100008,'2024-05-21 10:49:58','2024-05-21 10:49:58','hadesDbSvcUser@172.19.0.1',0),('fbBsuowl1cmSvhimUhbFpJ1v4hBAeWQPtD9rpSDjzSFdVitfI+Fcgu2C+noYobni',1,'2024-05-23 04:13:22','2024-05-24 10:59:19','unique12345',100005,'2024-05-23 04:13:22','2024-05-24 10:59:19','hadesDbSvcUser@172.19.0.1',0),('FBeBjuJwd4/gnpImRC1EWgVl2rBmc6fo3FuGiOqCD9tdVitfI+Fcgu2C+noYobni',1,'2024-08-12 05:37:02','2024-08-12 05:38:21','unique12345',100037,'2024-08-12 05:37:02','2024-08-12 05:38:21','hadesDbSvcUser@172.19.0.1',0),('FBJ1fBvuuLEPLLXmKKw5ySMcKfeLnz9hgGNyNeH9BV5dVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:08:37','2024-06-18 06:35:01','unique12345',100057,'2024-06-11 05:08:37','2024-06-11 06:35:01','hadesDbSvcUser@172.19.0.1',0),('fDhDaSEtjs/hnwhGb1BkdnceZtUomAksDz6WZIh+ZdVdVitfI+Fcgu2C+noYobni',1,'2025-04-29 03:49:53','2025-05-06 03:51:05','unique12345',100015,'2025-04-29 03:49:53','2025-04-29 03:51:05','hadesDbSvcUser@172.19.0.1',0),('FKEMN6md25zoLf4HmsHjZlEjJQ23Yxz6SFUDoJpSVzVdVitfI+Fcgu2C+noYobni',1,'2025-04-06 05:37:13','2025-04-13 05:39:43','unique12345',100294,'2025-04-06 05:37:13','2025-04-06 05:39:43','hadesDbSvcUser@172.19.0.1',0),('fKSbcH0cmXyAnehOMOV56EwxZPCAI/zEY9L4EcaBlSFdVitfI+Fcgu2C+noYobni',1,'2024-06-07 03:35:31','2024-06-14 15:36:06','unique12345',100044,'2024-06-07 15:35:31','2024-06-07 15:36:06','hadesDbSvcUser@172.19.0.1',0),('FLHaLQM5xcaen258f8NlnDU4yZpS6uIHmCiKmausIapdVitfI+Fcgu2C+noYobni',1,'2025-01-29 09:31:57','2025-01-29 10:02:37','unique12345',100294,'2025-01-29 09:31:57','2025-01-29 10:02:37','hadesDbSvcUser@172.19.0.1',0),('FmUXBgvQu73dy4jp1UJSf+vbyEap/4juvT/STgnGngtdVitfI+Fcgu2C+noYobni',1,'2024-07-17 04:00:26','2024-07-17 04:27:13','unique12345',100015,'2024-07-17 04:00:26','2024-07-17 04:27:13','hadesDbSvcUser@172.19.0.1',0),('fNuKkqUA2bgg7B79iy4TfhN453H4kK7mS2w+pvWvGBBdVitfI+Fcgu2C+noYobni',1,'2024-07-09 08:34:32','2024-07-16 08:34:42','unique12345',100021,'2024-07-09 08:34:32','2024-07-09 08:34:42','hadesDbSvcUser@172.19.0.1',0),('fpH1D5sCSL5Sbhk9of0hOPncDvkkp+HMqRf1kxvn5WtdVitfI+Fcgu2C+noYobni',1,'2024-06-06 06:35:24','2024-06-06 06:45:15','unique12345',100050,'2024-06-06 06:35:24','2024-06-06 06:45:15','hadesDbSvcUser@172.19.0.1',0),('FQuJfsmkdoAkfBoT0hYEIVTN419IvuF2rXK5LgCE5XNdVitfI+Fcgu2C+noYobni',1,'2025-01-06 11:59:27','2025-01-29 06:43:52','unique12345',100022,'2025-01-06 11:59:27','2025-01-22 06:43:52','hadesDbSvcUser@172.19.0.1',0),('FtBsXXQnk2WhJZl2b+mw+fxPSmko459nYz1FgOqBdCFdVitfI+Fcgu2C+noYobni',1,'2024-09-10 06:24:29','2024-10-03 07:03:43','unique12345',100111,'2024-09-10 06:24:29','2024-10-03 07:03:43','hadesDbSvcUser@172.19.0.1',0),('FTJY522kFCuPjbnI6QyhpfcWujKe2qtEBdF9FPHd5/tdVitfI+Fcgu2C+noYobni',1,'2024-06-17 05:43:59','2024-06-24 05:44:04','unique12345',100034,'2024-06-17 05:43:59','2024-06-17 05:44:04','hadesDbSvcUser@172.19.0.1',0),('FvjJzFEhQdauRCVAeAuXfd7xt83cRaHnJaKcNtWj0OJdVitfI+Fcgu2C+noYobni',1,'2024-08-07 11:45:23','2024-08-14 11:46:16','unique12345',100026,'2024-08-07 11:45:23','2024-08-07 11:46:16','hadesDbSvcUser@172.19.0.1',0),('Fvzctp0gZcuKEoWJj9+rWZsRYGQaVrerz9mVAPWSvuVdVitfI+Fcgu2C+noYobni',1,'2024-07-11 07:17:14','2024-07-11 07:17:18','unique12345',100106,'2024-07-11 07:17:14','2024-07-11 07:17:18','hadesDbSvcUser@172.19.0.1',0),('fWQ2h5lx/FIBwb9sokmP3fAxNCfMkQHQavbW2PNTG51dVitfI+Fcgu2C+noYobni',1,'2024-07-30 11:34:25','2024-07-30 11:42:34','unique12345',100015,'2024-07-30 11:34:25','2024-07-30 11:42:34','hadesDbSvcUser@172.19.0.1',0),('fWuOYJGtU4x4Ycu1qGqa+YgOupJvBxD97n16n0TzfmddVitfI+Fcgu2C+noYobni',1,'2024-06-17 05:14:00','2024-06-24 05:14:08','unique12345',100087,'2024-06-17 05:14:00','2024-06-17 05:14:08','hadesDbSvcUser@172.19.0.1',0),('Fx2XdoaMnsDa/ZmgHPS0uVFIjWd7mv7mBNtFF4Zcigc=',1,'2024-12-05 01:07:37','2024-12-27 06:23:04','unique12345',100215,'2024-12-05 13:07:37','2024-12-20 06:23:04','hadesDbSvcUser@172.19.0.1',0),('fXrt5Ss9XROnqt1FmVV7gqA1r84LRpprFZXW67dof3NdVitfI+Fcgu2C+noYobni',1,'2024-10-03 08:05:57','2024-10-07 13:33:27','unique12345',100111,'2024-10-03 08:05:57','2024-10-07 13:33:27','hadesDbSvcUser@172.19.0.1',0),('G4I8g0k8gGsCCUu1kknCIqE+wdOco60gtkaVK15Alx5dVitfI+Fcgu2C+noYobni',1,'2024-07-19 10:37:56','2024-07-22 07:08:59','unique12345',100015,'2024-07-19 10:37:56','2024-07-22 07:08:59','hadesDbSvcUser@172.19.0.1',0),('g7ziHlxf6drO/t/zdU9vWN70vHaomm2dP8cEUYSXRuBdVitfI+Fcgu2C+noYobni',1,'2024-10-31 02:59:13','2024-11-07 15:01:52','unique12345',100088,'2024-10-31 14:59:13','2024-10-31 15:01:52','hadesDbSvcUser@172.19.0.1',0),('g8oV1DL0gf4f83iSHY6LEAgvIP1NmcwF3C0CRarUwBxdVitfI+Fcgu2C+noYobni',1,'2024-05-28 01:37:07','2024-05-28 01:37:11','unique12345',100039,'2024-05-28 01:37:07','2024-05-28 01:37:11','hadesDbSvcUser@172.19.0.1',0),('G8XnkwAW/0gpiafM7L0Cd7KULd/OnXukraFxBMBswnRdVitfI+Fcgu2C+noYobni',1,'2024-12-24 06:42:03','2024-12-31 13:51:40','unique12345',100329,'2024-12-24 06:42:03','2024-12-24 13:51:40','hadesDbSvcUser@172.19.0.1',0),('gA2PI2zMUJJaY0fSvWrcrM5nVoeDQrzOW3vpH/HwiDddVitfI+Fcgu2C+noYobni',1,'2024-10-28 10:16:18','2024-10-29 12:34:59','unique12345',100005,'2024-10-28 10:16:18','2024-10-29 12:34:59','hadesDbSvcUser@172.19.0.1',0),('Gc1y4LPr3GJNl0TQHYt1EDFbg2QFrH9Xp3oRJaT94AldVitfI+Fcgu2C+noYobni',1,'2025-06-10 00:20:04','2025-06-17 12:20:06','unique12345',100015,'2025-06-10 12:20:04','2025-06-10 12:20:06','hadesDbSvcUser@172.19.0.1',0),('gcnyFinYhdXQteq0MufnFukf55a90aPntbnPeL3Y0RJdVitfI+Fcgu2C+noYobni',1,'2025-04-03 11:17:52','2025-04-15 10:36:07','unique12345',100112,'2025-04-03 11:17:52','2025-04-15 10:36:07','hadesDbSvcUser@172.19.0.1',0),('GEYdlqByQfiaNThnjo9zEgLUpaVRjq+LQTGaAXTOt3ddVitfI+Fcgu2C+noYobni',1,'2024-05-21 11:53:38','2024-05-23 06:20:53','unique12345',100017,'2024-05-21 11:53:38','2024-05-23 06:20:53','hadesDbSvcUser@172.19.0.1',0),('gEySlAMXWlcLp60TjLDBXSwgy0+RLxmKPjk2eo7VKIhdVitfI+Fcgu2C+noYobni',1,'2024-05-28 01:33:14','2024-05-28 01:33:23','unique12345',100039,'2024-05-28 01:33:14','2024-05-28 01:33:23','hadesDbSvcUser@172.19.0.1',0),('gh4UtV0bYvvJbFM7p8+jsudPJEpCSM3MuE0+sIe7eNZdVitfI+Fcgu2C+noYobni',1,'2024-08-13 07:29:16','2024-08-13 07:29:26','unique12345',100141,'2024-08-13 07:29:16','2024-08-13 07:29:26','hadesDbSvcUser@172.19.0.1',0),('GhO6NJm4DJBthhh0h2rzBk1XSVVfLYk3Uy5UdK0DDB9dVitfI+Fcgu2C+noYobni',1,'2024-07-11 08:56:15','2024-07-11 08:56:19','unique12345',100106,'2024-07-11 08:56:15','2024-07-11 08:56:19','hadesDbSvcUser@172.19.0.1',0),('GHOJt9H6dI8Kg5sjVDp48jenfhScI5p0zKGQOzTGjeRdVitfI+Fcgu2C+noYobni',1,'2024-12-02 09:05:47','2024-12-02 09:06:02','unique12345',100015,'2024-12-02 09:05:47','2024-12-02 09:06:02','hadesDbSvcUser@172.19.0.1',0),('gKO6PVVVLACGffZ2vAnpwBLCW7TKH0EsnyNSeAdQ4wFdVitfI+Fcgu2C+noYobni',1,'2024-06-14 00:36:55','2024-06-14 06:36:41','unique12345',100039,'2024-06-14 00:36:55','2024-06-14 06:36:41','hadesDbSvcUser@172.19.0.1',0),('gmrUHvbUVGGoRRqhHrl3ThJs2tHj8g7M3LbqpT9YY/ZdVitfI+Fcgu2C+noYobni',1,'2024-06-11 01:05:50','2024-07-15 05:02:07','unique12345',100023,'2024-06-11 13:05:50','2024-07-08 05:02:07','hadesDbSvcUser@172.19.0.1',0),('GNw15/xsKGkDgq+DdHEkUabUPiUUWqrIjLvmsn1x6apdVitfI+Fcgu2C+noYobni',1,'2024-07-16 01:19:17','2024-07-16 13:26:56','unique12345',100015,'2024-07-16 13:19:17','2024-07-16 13:26:56','hadesDbSvcUser@172.19.0.1',0),('Gq/dH/K91+d4NagITg1IHSy4/oPns8pwgO6kjb1VSdBdVitfI+Fcgu2C+noYobni',1,'2024-05-28 05:51:01','2024-05-28 05:51:04','unique12345',100039,'2024-05-28 05:51:01','2024-05-28 05:51:04','hadesDbSvcUser@172.19.0.1',0),('guArdGv0k6yi0wdj+U/VMjcNzX/ce+vcHtNuWHy1avJdVitfI+Fcgu2C+noYobni',1,'2024-11-14 09:43:59','2024-11-29 04:49:46','unique12345',100022,'2024-11-14 09:43:59','2024-11-29 04:49:46','hadesDbSvcUser@172.19.0.1',0),('GUSWDREA6RmCxLhqsIEg4nNxKb6z2z0lvvth4gHpDvFdVitfI+Fcgu2C+noYobni',1,'2024-09-23 08:41:20','2024-09-23 10:07:03','unique12345',100015,'2024-09-23 08:41:20','2024-09-23 10:07:03','hadesDbSvcUser@172.19.0.1',0),('gVk29QXNDBjNZf+3UaOO/gbauPKOB4WifSVY8lHPUPZdVitfI+Fcgu2C+noYobni',1,'2024-09-26 07:12:05','2024-09-26 07:17:13','unique12345',100015,'2024-09-26 07:12:05','2024-09-26 07:17:13','hadesDbSvcUser@172.19.0.1',0),('gy+Y/IDo8lL1NvLCZ7E8ePA2ihu/pPNLl71QMIIUJgc=',1,'2025-01-08 00:57:06','2025-01-22 10:00:18','unique12345',100329,'2025-01-08 12:57:06','2025-01-15 10:00:18','hadesDbSvcUser@172.19.0.1',0),('gYpuL9WOTNuCzuj9QqKVeTZng8969nsTNi6qZlfDc5ddVitfI+Fcgu2C+noYobni',1,'2024-06-10 06:34:27','2024-06-11 06:07:15','unique12345',100056,'2024-06-10 06:34:27','2024-06-11 06:07:15','hadesDbSvcUser@172.19.0.1',0),('h/SxtB8mc4Z2bywZ7ORSOS4o1jKyuhUZzGOaxtFjPkBdVitfI+Fcgu2C+noYobni',1,'2024-08-26 10:06:23','2024-09-02 10:07:29','unique12345',100178,'2024-08-26 10:06:23','2024-08-26 10:07:29','hadesDbSvcUser@172.19.0.1',0),('h4cItI1pVA6ckD3b+pERPGX0Cd2TxzKf+0fYWOeih6FdVitfI+Fcgu2C+noYobni',1,'2025-01-22 09:15:42','2025-01-29 09:15:59','unique12345',100330,'2025-01-22 09:15:42','2025-01-22 09:15:59','hadesDbSvcUser@172.19.0.1',0),('h6mN7AjfnWI7oUm+k2CQbMUSNHdPIIUmW7WNoEPgXmJdVitfI+Fcgu2C+noYobni',1,'2024-10-28 07:00:55','2024-11-04 07:00:56','unique12345',100294,'2024-10-28 07:00:55','2024-10-28 07:00:56','hadesDbSvcUser@172.19.0.1',0),('HACyg1YNyMmE+8I20CJaaNAoa/oXe1ZiOYEqxw0f1sddVitfI+Fcgu2C+noYobni',1,'2024-08-05 04:22:57','2024-08-05 12:15:13','unique12345',100015,'2024-08-05 04:22:57','2024-08-05 12:15:13','hadesDbSvcUser@172.19.0.1',0),('hAFJlmb4u/RgaPu2mfdQYfSlCsiuM4Q6Eqj2bg7KVlBdVitfI+Fcgu2C+noYobni',1,'2024-07-12 07:08:50','2024-07-19 07:08:50','unique12345',100107,'2024-07-12 07:08:50','2024-07-12 07:08:50','hadesDbSvcUser@172.19.0.1',0),('haIz/YbLLPEkwxiQ/2qsFjZ9iUvscrrjs3QLjV8uCtddVitfI+Fcgu2C+noYobni',1,'2024-11-18 00:10:48','2024-11-25 12:12:32','unique12345',100017,'2024-11-18 12:10:48','2024-11-18 12:12:32','hadesDbSvcUser@172.19.0.1',0),('hbTvuQ/Ov8baU0TMArQ/5/flmNoXOjmz7twKKTmqDHZdVitfI+Fcgu2C+noYobni',1,'2024-06-26 09:18:51','2024-07-05 13:24:17','unique12345',100014,'2024-06-26 09:18:51','2024-06-28 13:24:17','hadesDbSvcUser@172.19.0.1',0),('hcSShCYTc5gyBlpvNw+ofKQJOq2sEgIrPqe71QFV8/RdVitfI+Fcgu2C+noYobni',1,'2024-06-07 03:20:28','2024-06-07 03:21:16','unique12345',100044,'2024-06-07 03:20:28','2024-06-07 03:21:16','hadesDbSvcUser@172.19.0.1',0),('hdmukEDpPJkMV/IFSd/tjv/hBgApH6Wdof8zsEJu1YNdVitfI+Fcgu2C+noYobni',1,'2025-05-31 03:18:05','2025-06-07 03:20:00','unique12345',100022,'2025-05-31 03:18:05','2025-05-31 03:20:00','hadesDbSvcUser@172.19.0.1',0),('hdOYvLvQD0CjynSv/NUZRzON2NdX4D4B9KWe5UDOCr9dVitfI+Fcgu2C+noYobni',1,'2024-05-27 02:44:44','2024-05-29 09:12:04','unique12345',100037,'2024-05-27 02:44:44','2024-05-29 09:12:04','hadesDbSvcUser@172.19.0.1',0),('hDt7ldILFbQWzYPHrjuuRG6JS5aKMvPTvwbIrTDfwhFdVitfI+Fcgu2C+noYobni',1,'2024-07-16 08:35:27','2024-07-16 10:17:24','unique12345',100015,'2024-07-16 08:35:27','2024-07-16 10:17:24','hadesDbSvcUser@172.19.0.1',0),('HEHgpWO6IcwyPotgPur16qqGJFEZ2l5SB47IYQR6ZX9dVitfI+Fcgu2C+noYobni',1,'2024-05-21 00:12:10','2024-05-28 00:12:10','unique12345',100018,'2024-05-21 12:12:10','2024-05-21 12:12:10','hadesDbSvcUser@172.19.0.1',0),('hEpuw61T7m/tOCRzNbKMQBDa+onlrQS14fqfo9DEJ+M=',1,'2024-07-16 01:01:07','2024-07-16 13:01:34','unique12345',100106,'2024-07-16 13:01:07','2024-07-16 13:01:34','hadesDbSvcUser@172.19.0.1',0),('hF5a0wprdmAMKyxoiNcWoPi0xmrROgDKREHu/QC1MttdVitfI+Fcgu2C+noYobni',1,'2024-06-20 08:44:20','2024-07-04 08:44:21','unique12345',100061,'2024-06-20 08:44:20','2024-06-27 08:44:21','hadesDbSvcUser@172.19.0.1',0),('hFGe40nWkkrPh8WL+HVdi8JP/pH85FMoJLxnT3EgBRxdVitfI+Fcgu2C+noYobni',1,'2024-05-31 03:46:13','2024-06-04 12:22:43','unique12345',100014,'2024-05-31 03:46:13','2024-06-04 12:22:43','hadesDbSvcUser@172.19.0.1',0),('Hfuko2pV9zoZvH51wWfv+fcMMCnr37ijds4BW2/H97BdVitfI+Fcgu2C+noYobni',1,'2024-05-27 04:15:19','2024-05-27 04:33:13','unique12345',100033,'2024-05-27 04:15:19','2024-05-27 04:33:13','hadesDbSvcUser@172.19.0.1',0),('hldn92ISBlIfviQRFQUaCjz5eupgoyCurhxrNae0eUxdVitfI+Fcgu2C+noYobni',1,'2024-07-08 06:19:16','2024-07-11 07:03:32','unique12345',100015,'2024-07-08 06:19:16','2024-07-11 07:03:32','hadesDbSvcUser@172.19.0.1',0),('hLzDnBYxX2MFqej0/hm+YBSllAc7JlNTEqlZ6NP930JdVitfI+Fcgu2C+noYobni',1,'2024-06-13 05:09:57','2024-06-13 05:57:21','unique12345',100062,'2024-06-13 05:09:57','2024-06-13 05:57:21','hadesDbSvcUser@172.19.0.1',0),('Hm2uFcRQzHUdGE37vejyXh8fJo+UVb8LSxk58kjU31NdVitfI+Fcgu2C+noYobni',1,'2024-08-05 09:47:36','2024-08-05 09:48:20','unique12345',100106,'2024-08-05 09:47:36','2024-08-05 09:48:20','hadesDbSvcUser@172.19.0.1',0),('hOcve32Bf3ouZlk65iYnmaDTvwQYBro/pEk+GZOX/wBdVitfI+Fcgu2C+noYobni',1,'2024-07-11 08:57:49','2024-07-11 08:57:58','unique12345',100015,'2024-07-11 08:57:49','2024-07-11 08:57:58','hadesDbSvcUser@172.19.0.1',0),('HQA+76gSodTtzkNibrGVxx4s3Bt+Cz8bqOejTHzSHGRdVitfI+Fcgu2C+noYobni',1,'2024-10-25 03:12:48','2024-11-01 18:15:39','unique12345',100310,'2024-10-25 03:12:48','2024-10-25 18:15:39','hadesDbSvcUser@172.19.0.1',0),('hZutaZMgu/qRE8oUo3z7bYxd/YtUyJyk5UAnsZVA0+tdVitfI+Fcgu2C+noYobni',1,'2024-07-30 11:42:51','2024-07-31 08:30:30','unique12345',100015,'2024-07-30 11:42:51','2024-07-31 08:30:30','hadesDbSvcUser@172.19.0.1',0),('i+QNi+28Jml35w+GwcbhuT5hsNCram1cbXkTYf5w8q1dVitfI+Fcgu2C+noYobni',1,'2024-05-22 00:16:57','2024-05-23 04:01:47','unique12345',100005,'2024-05-22 12:16:57','2024-05-23 04:01:47','hadesDbSvcUser@172.19.0.1',0),('I441gh1bi7kQmRbCfyUUmXkLCRmSIzVcULM5tZblgTNdVitfI+Fcgu2C+noYobni',1,'2025-02-06 05:19:46','2025-02-13 05:21:28','unique12345',100526,'2025-02-06 05:19:46','2025-02-06 05:21:28','hadesDbSvcUser@172.19.0.1',0),('I4s8qYTZpES024jC/9QGAFHMGZyzaB1ZJUG3rxP+GM5dVitfI+Fcgu2C+noYobni',1,'2024-10-14 10:03:05','2024-10-21 10:03:05','unique12345',100287,'2024-10-14 10:03:05','2024-10-14 10:03:05','hadesDbSvcUser@172.19.0.1',0),('i8HNWm8hR6zx8IoUnehhezg8TaWVvAUuzPJs6dxYsfBdVitfI+Fcgu2C+noYobni',1,'2025-02-05 04:24:06','2025-02-05 04:30:18','unique12345',100064,'2025-02-05 04:24:06','2025-02-05 04:30:18','hadesDbSvcUser@172.19.0.1',0),('i8SFo1ZcECzZa5C3nN7+nSQfUqxBBgDq08bPaBPd75ldVitfI+Fcgu2C+noYobni',1,'2024-06-17 05:26:43','2024-06-17 06:06:55','unique12345',100089,'2024-06-17 05:26:43','2024-06-17 06:06:55','hadesDbSvcUser@172.19.0.1',0),('iB7qusmHxdPwT4fbMyrrVVwJM5DrZ7SyqkxQEGDd2ihdVitfI+Fcgu2C+noYobni',1,'2024-11-04 00:09:51','2024-12-04 08:47:00','unique12345',100215,'2024-11-04 00:09:51','2024-11-27 08:47:00','hadesDbSvcUser@172.19.0.1',0),('ibBinEmoXF5cft7NB312pp50G+S6YG0BedpKl/+IVa9dVitfI+Fcgu2C+noYobni',1,'2025-03-13 10:29:08','2025-03-17 02:18:12','unique12345',100526,'2025-03-13 10:29:08','2025-03-17 02:18:12','hadesDbSvcUser@172.19.0.1',0),('ICLXUv6lIZF0HkaIu/ioXAMjK2mxbtSQzrM38YS36u8=',1,'2024-11-07 01:54:02','2024-11-12 10:18:19','unique12345',100005,'2024-11-07 13:54:02','2024-11-12 10:18:19','hadesDbSvcUser@172.19.0.1',0),('IF+SHRw0eyYhgvkDfRjbm7KakEcbC0iVar8SNJnt4gJdVitfI+Fcgu2C+noYobni',1,'2024-09-25 06:26:23','2024-10-11 12:42:41','unique12345',100023,'2024-09-25 06:26:23','2024-10-04 12:42:41','hadesDbSvcUser@172.19.0.1',0),('IFLG3guUPD6KWV+Mujn9iTn3m/jqrgr+qXLjEUc8cGJdVitfI+Fcgu2C+noYobni',1,'2024-07-03 06:28:56','2024-07-03 06:29:01','unique12345',100072,'2024-07-03 06:28:56','2024-07-03 06:29:01','hadesDbSvcUser@172.19.0.1',0),('IfMHyCxbzZdzvGHzwK88QQV7hube/KQ5dyZgNigB6n5dVitfI+Fcgu2C+noYobni',1,'2024-09-26 08:29:46','2024-09-27 05:36:38','unique12345',100015,'2024-09-26 08:29:46','2024-09-27 05:36:38','hadesDbSvcUser@172.19.0.1',0),('iGR3+GlA2I00kp6WUWKUlXj79b0coga0BkH7Megg44FdVitfI+Fcgu2C+noYobni',1,'2024-11-20 01:15:01','2024-11-27 02:31:16','unique12345',100072,'2024-11-20 01:15:01','2024-11-20 02:31:16','hadesDbSvcUser@172.19.0.1',0),('ihMliyiYq9p/sOlRefQfaMBk30clvW0Zc9K0ptuRO9ZdVitfI+Fcgu2C+noYobni',1,'2024-06-19 09:49:50','2024-06-20 09:01:08','unique12345',100015,'2024-06-19 09:49:50','2024-06-20 09:01:08','hadesDbSvcUser@172.19.0.1',0),('Ihodudd9BbF6+15pm0KPJRh/soxpDd4utGMX3t0fJ4M=',1,'2024-09-13 05:08:48','2024-09-20 05:29:14','unique12345',100215,'2024-09-13 05:08:48','2024-09-13 05:29:14','hadesDbSvcUser@172.19.0.1',0),('iIkLZaSzeo0tzCzvvGHGK+DZZZ/u6UfY+Q/eHaWo3wRdVitfI+Fcgu2C+noYobni',1,'2024-11-13 05:48:52','2024-11-28 07:22:57','unique12345',100338,'2024-11-13 05:48:52','2024-11-21 07:22:57','hadesDbSvcUser@172.19.0.1',0),('IKlIubeAt9VIgERjmFqTIYLfgq65Uy0updH3G8GmLeBdVitfI+Fcgu2C+noYobni',1,'2024-08-19 05:23:45','2024-08-30 08:59:53','unique12345',100023,'2024-08-19 05:23:45','2024-08-23 08:59:53','hadesDbSvcUser@172.19.0.1',0),('iLYhPqZudYQy/tVtHw7h7eSmD6fOKcBuV000rhbLTXVdVitfI+Fcgu2C+noYobni',1,'2025-01-13 06:09:18','2025-01-23 05:41:07','unique12345',100033,'2025-01-13 06:09:18','2025-01-16 05:41:07','hadesDbSvcUser@172.19.0.1',0),('iMEIXEijw9ldkYy2hqcWN2yWJwNTWuEjkgzrwKBFOTldVitfI+Fcgu2C+noYobni',1,'2025-02-05 01:28:04','2025-02-13 13:25:32','unique12345',100111,'2025-02-05 13:28:04','2025-02-06 13:25:32','hadesDbSvcUser@172.19.0.1',0),('IMZU/nTU9gbsdLLLy6o0hshN9ZzCIapFR9A4cR725ZFdVitfI+Fcgu2C+noYobni',1,'2024-07-11 09:31:40','2024-07-11 09:31:49','unique12345',100106,'2024-07-11 09:31:40','2024-07-11 09:31:49','hadesDbSvcUser@172.19.0.1',0),('iNrbJP1Gv6tm6waeOYRnkDJUr5SaJAWAXJEo7SV7vyldVitfI+Fcgu2C+noYobni',1,'2025-04-23 06:24:41','2025-04-30 06:25:43','unique12345',100043,'2025-04-23 06:24:41','2025-04-23 06:25:43','hadesDbSvcUser@172.19.0.1',0),('iOGyvecgomdnZAZLVH14GfflJVZSxeLJnaT3Zll/2Y1dVitfI+Fcgu2C+noYobni',1,'2025-04-29 00:36:36','2025-05-12 14:04:27','unique12345',100111,'2025-04-29 12:36:36','2025-05-05 14:04:27','hadesDbSvcUser@172.19.0.1',0),('IQj1OKwyTvWDpgIFJ0zbtLP9CgSVozYhAf6KQky9TipdVitfI+Fcgu2C+noYobni',1,'2025-01-17 11:46:39','2025-01-24 11:51:38','unique12345',100137,'2025-01-17 11:46:39','2025-01-17 11:51:38','hadesDbSvcUser@172.19.0.1',0),('IS23XC58YXMTMu7dgO7sDMnyHqi6CUNYYiBvA6aJzMddVitfI+Fcgu2C+noYobni',1,'2024-05-29 09:19:20','2024-06-07 09:14:42','unique12345',100037,'2024-05-29 09:19:20','2024-06-07 09:14:42','hadesDbSvcUser@172.19.0.1',0),('iUXeFE/Ah+KxYWZCi5n3UUGogAcz8LeuTrOjN+09vsddVitfI+Fcgu2C+noYobni',1,'2024-11-13 02:23:00','2024-11-20 02:29:52','unique12345',100037,'2024-11-13 02:23:00','2024-11-13 02:29:52','hadesDbSvcUser@172.19.0.1',0),('IV+h0ggDBWHEfZrCHIpwwbCQSf/43NIcFwZ1hNN0j0ZdVitfI+Fcgu2C+noYobni',1,'2025-03-17 01:18:56','2025-04-03 03:55:39','unique12345',100526,'2025-03-17 13:18:56','2025-03-27 03:55:39','hadesDbSvcUser@172.19.0.1',0),('Ivphm9E8JLsO19ZaYPt5IKH7OZjTcc+VDfp0bVw7BDldVitfI+Fcgu2C+noYobni',1,'2024-06-18 08:52:32','2024-06-18 08:57:17','unique12345',100061,'2024-06-18 08:52:32','2024-06-18 08:57:17','hadesDbSvcUser@172.19.0.1',0),('J+PBBrU1GL9pJHLjjSMSqp5tT7xzQ8TS7l5mpDvRuSNdVitfI+Fcgu2C+noYobni',1,'2024-06-18 08:57:33','2024-06-18 08:57:41','unique12345',100099,'2024-06-18 08:57:33','2024-06-18 08:57:41','hadesDbSvcUser@172.19.0.1',0),('j3F3aHj2tRnN+uzWPI89uv3KA0pBrJdW3eyYxcCo96JdVitfI+Fcgu2C+noYobni',1,'2024-06-06 06:18:17','2024-06-06 06:19:49','unique12345',100050,'2024-06-06 06:18:17','2024-06-06 06:19:49','hadesDbSvcUser@172.19.0.1',0),('JeCirM+Zh0CLPlxUcTKZUSZN0tn8Y+5HBlFL/9o/RO5dVitfI+Fcgu2C+noYobni',1,'2024-08-12 05:51:19','2024-08-19 05:51:19','unique12345',100140,'2024-08-12 05:51:19','2024-08-12 05:51:19','hadesDbSvcUser@172.19.0.1',0),('Jg8Fvi3LMu2rgKV1IYjgLayDrG3q9rHl8F0VzfCoWYddVitfI+Fcgu2C+noYobni',1,'2024-05-23 09:50:59','2024-05-30 09:50:59','unique12345',100029,'2024-05-23 09:50:59','2024-05-23 09:50:59','hadesDbSvcUser@172.19.0.1',0),('Jh+fXqViFK0yhDp7E6sNrRBvGaidttD94XqNhBhvxwBdVitfI+Fcgu2C+noYobni',1,'2024-10-17 10:33:54','2024-10-24 10:50:50','unique12345',100294,'2024-10-17 10:33:54','2024-10-17 10:50:50','hadesDbSvcUser@172.19.0.1',0),('jh02RH0BdTlhsBwvWfdhaW2CGDRAgqr2UF0kabm1l+BdVitfI+Fcgu2C+noYobni',1,'2024-05-24 09:45:51','2024-05-24 12:13:43','unique12345',100006,'2024-05-24 09:45:51','2024-05-24 12:13:43','hadesDbSvcUser@172.19.0.1',0),('JizAl44TRygZIXzPGhfBLCdPvWqZQ945swo7oArupJhdVitfI+Fcgu2C+noYobni',1,'2024-07-16 00:53:44','2024-07-16 12:54:35','unique12345',100106,'2024-07-16 12:53:44','2024-07-16 12:54:35','hadesDbSvcUser@172.19.0.1',0),('joFaJg4b/PV7aRugYc5KyLuSPaJz1ybIbxamZV7uzKFdVitfI+Fcgu2C+noYobni',1,'2024-07-16 01:03:53','2024-07-16 13:04:46','unique12345',100015,'2024-07-16 13:03:53','2024-07-16 13:04:46','hadesDbSvcUser@172.19.0.1',0),('joVqHcCMk5e/lyllIFsFBf9uEIH2b2nuDvtyJTLzqsJdVitfI+Fcgu2C+noYobni',1,'2024-05-30 09:15:02','2024-05-31 03:41:49','unique12345',100014,'2024-05-30 09:15:02','2024-05-31 03:41:49','hadesDbSvcUser@172.19.0.1',0),('jQhJMyn1bDsiKc9U6kEcDMeWOY8+nmIU+y5BZ0LkORxdVitfI+Fcgu2C+noYobni',1,'2024-05-21 11:16:43','2024-05-28 11:12:31','unique12345',100014,'2024-05-21 11:16:43','2024-05-28 11:12:31','hadesDbSvcUser@172.19.0.1',0),('JQOrY3DrTyV45LxW1VqMbOAihK2dhltxqP4nSJFdvvZdVitfI+Fcgu2C+noYobni',1,'2024-06-12 09:01:56','2024-06-17 05:19:08','unique12345',100058,'2024-06-12 09:01:56','2024-06-17 05:19:08','hadesDbSvcUser@172.19.0.1',0),('jr4b7ORMrv2A8OV8UhoH27Jrz1AyzciXZvN2806xLPhdVitfI+Fcgu2C+noYobni',1,'2024-10-01 01:26:40','2024-10-09 02:56:31','unique12345',100238,'2024-10-01 13:26:40','2024-10-02 02:56:31','hadesDbSvcUser@172.19.0.1',0),('jSR/Ak6y6QljNlRxuR4V/frRkwus06TxukFOhVaD359dVitfI+Fcgu2C+noYobni',1,'2024-07-01 11:16:58','2024-07-11 11:00:52','unique12345',100017,'2024-07-01 11:16:58','2024-07-11 11:00:52','hadesDbSvcUser@172.19.0.1',0),('Jtd46SwEkyCo2+g1fRielxA3oCh7spmuRdIlUZ9VxH9dVitfI+Fcgu2C+noYobni',1,'2024-06-04 04:56:41','2024-06-04 16:59:11','unique12345',100046,'2024-06-04 16:56:41','2024-06-04 16:59:11','hadesDbSvcUser@172.19.0.1',0),('jUBxXfjtDwXrwwV6Mhb0S6U7gApiR4NSyQQVLzRY1mJdVitfI+Fcgu2C+noYobni',1,'2024-10-29 00:35:06','2024-10-30 11:44:05','unique12345',100005,'2024-10-29 12:35:06','2024-10-30 11:44:05','hadesDbSvcUser@172.19.0.1',0),('jveEwlC0cA2AMxrUPn/9rVz+yZS3aIW8Qih4TwWaayZdVitfI+Fcgu2C+noYobni',1,'2024-07-11 07:12:05','2024-07-11 07:13:26','unique12345',100015,'2024-07-11 07:12:05','2024-07-11 07:13:26','hadesDbSvcUser@172.19.0.1',0),('JVrzJp+Xfimxr6CtJELAodqn76q2ut6zRvHc8Ryr6e1dVitfI+Fcgu2C+noYobni',1,'2024-07-16 07:24:17','2024-07-16 08:27:55','unique12345',100106,'2024-07-16 07:24:17','2024-07-16 08:27:55','hadesDbSvcUser@172.19.0.1',0),('jvW3ci5fOtrcjlyjNBW6k5BGxmhxiagw519mK2CsAMtdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:08:08','2024-06-18 05:08:08','unique12345',100060,'2024-06-11 05:08:08','2024-06-11 05:08:08','hadesDbSvcUser@172.19.0.1',0),('Jwy4NcRlGmfBvXS7mZ0Nfshv5DQJMZkX0qHt0kBXnS4=',1,'2024-08-22 00:39:41','2024-08-28 07:07:53','unique12345',100015,'2024-08-22 12:39:41','2024-08-28 07:07:53','hadesDbSvcUser@172.19.0.1',0),('JwYf+4iGhprR2T94BBQ8+ni6HV85xRkFW0V6/KZGr59dVitfI+Fcgu2C+noYobni',1,'2024-06-20 09:01:11','2024-06-20 09:02:19','unique12345',100015,'2024-06-20 09:01:11','2024-06-20 09:02:19','hadesDbSvcUser@172.19.0.1',0),('k3hgvixdMnPt1csE75bQRkL+ZONsSrgU6lDt8NMRNPVdVitfI+Fcgu2C+noYobni',1,'2024-05-27 02:39:22','2024-05-27 04:15:03','unique12345',100033,'2024-05-27 02:39:22','2024-05-27 04:15:03','hadesDbSvcUser@172.19.0.1',0),('k4y2WJ+Lh2KlsMux+hRX3us7nzj1/EP3f/F35FDmJ+5dVitfI+Fcgu2C+noYobni',1,'2024-08-29 11:47:42','2024-09-05 11:48:29','unique12345',100052,'2024-08-29 11:47:42','2024-08-29 11:48:29','hadesDbSvcUser@172.19.0.1',0),('k7LhGvFLU2b90n47au+grZawG3SOEfuqyjoWgZ/Mhs9dVitfI+Fcgu2C+noYobni',1,'2024-07-01 06:26:55','2024-07-01 11:01:20','unique12345',100015,'2024-07-01 06:26:55','2024-07-01 11:01:20','hadesDbSvcUser@172.19.0.1',0),('k8oACQmbh/wOs6Aa3uubU3xHpaZjznaW/kl8Rb/2HfBdVitfI+Fcgu2C+noYobni',1,'2024-07-16 08:34:55','2024-07-16 08:34:59','unique12345',100015,'2024-07-16 08:34:55','2024-07-16 08:34:59','hadesDbSvcUser@172.19.0.1',0),('K92kSVxxQaoWfOVvhiqVj+B3EgEmaxJ9tXihoUlNTTI=',1,'2024-12-11 09:01:13','2024-12-18 09:01:18','unique12345',100027,'2024-12-11 09:01:13','2024-12-11 09:01:18','hadesDbSvcUser@172.19.0.1',0),('kC1ylzBY6ASLLYR9WnKgFDe9eMmWRC/G8o1hdvOV+GFdVitfI+Fcgu2C+noYobni',1,'2025-02-24 09:17:09','2025-03-03 09:18:39','unique12345',100540,'2025-02-24 09:17:09','2025-02-24 09:18:39','hadesDbSvcUser@172.19.0.1',0),('KEcW9tLRmuq8ANnb4ZUkjgOmnBRwfwbrIEAcyqxxMTZdVitfI+Fcgu2C+noYobni',1,'2024-06-28 11:59:41','2024-07-01 04:15:12','unique12345',100005,'2024-06-28 11:59:41','2024-07-01 04:15:12','hadesDbSvcUser@172.19.0.1',0),('KIp07obN9MezDPQogWvojjvMCAZ3pZpIoQx+4liUxj1dVitfI+Fcgu2C+noYobni',1,'2024-07-16 01:38:21','2024-07-17 04:00:10','unique12345',100015,'2024-07-16 13:38:21','2024-07-17 04:00:10','hadesDbSvcUser@172.19.0.1',0),('KKksb63r5mc0jF7WAM8DG3EzmuNGPm2DOMh1uQbMQSZdVitfI+Fcgu2C+noYobni',1,'2024-07-30 10:52:28','2024-08-01 05:27:40','unique12345',100112,'2024-07-30 10:52:28','2024-08-01 05:27:40','hadesDbSvcUser@172.19.0.1',0),('KLEHZBJgt87i5Tb9QYK6GCHDTWwnZGF3ssyzDNP7625dVitfI+Fcgu2C+noYobni',1,'2024-08-08 07:19:59','2024-08-08 11:14:23','unique12345',100017,'2024-08-08 07:19:59','2024-08-08 11:14:23','hadesDbSvcUser@172.19.0.1',0),('klXXOwZo5ReGsB0KY7Ft65nRTBr3ijwVeHuLkM/znKZdVitfI+Fcgu2C+noYobni',1,'2025-02-17 07:07:41','2025-03-03 10:46:47','unique12345',100015,'2025-02-17 07:07:41','2025-02-24 10:46:47','hadesDbSvcUser@172.19.0.1',0),('kmSV21Ps6yJg1eBn5QqTRQ4dyU5XA3T3axRb7CssyQxdVitfI+Fcgu2C+noYobni',1,'2024-05-29 05:27:07','2024-05-30 04:12:28','unique12345',100005,'2024-05-29 05:27:07','2024-05-30 04:12:28','hadesDbSvcUser@172.19.0.1',0),('kNG/Wltiix9l3++wCQMdy/pipvMacgH1F8fpkDRhQENdVitfI+Fcgu2C+noYobni',1,'2024-07-11 09:13:23','2024-07-11 09:13:31','unique12345',100015,'2024-07-11 09:13:23','2024-07-11 09:13:31','hadesDbSvcUser@172.19.0.1',0),('kNP5VCkZ7ftx+goPi9yX9ZXkRDjSWF1MHvQukDIJz5BdVitfI+Fcgu2C+noYobni',1,'2024-08-02 06:52:39','2024-08-13 05:55:31','unique12345',100113,'2024-08-02 06:52:39','2024-08-06 05:55:31','hadesDbSvcUser@172.19.0.1',0),('KO4DwwPTg6Aa7uVZ2652Y/OXVRHM73isnx63mtk3sABdVitfI+Fcgu2C+noYobni',1,'2024-09-09 02:07:55','2024-09-16 05:42:06','unique12345',100037,'2024-09-09 02:07:55','2024-09-09 05:42:06','hadesDbSvcUser@172.19.0.1',0),('ko9/8uRGEuz8OwUOIb3ELyqcrBfffvVXYHrrvA/OCVxdVitfI+Fcgu2C+noYobni',1,'2024-10-24 02:44:43','2024-10-31 02:45:01','unique12345',100088,'2024-10-24 02:44:43','2024-10-24 02:45:01','hadesDbSvcUser@172.19.0.1',0),('kQQhI/iOyeoEaY89rPi/ABQC+BBu7lYyKoz2B5E2hp9dVitfI+Fcgu2C+noYobni',1,'2024-09-30 09:54:07','2024-10-09 09:59:10','unique12345',100015,'2024-09-30 09:54:07','2024-10-09 09:59:10','hadesDbSvcUser@172.19.0.1',0),('kRSqNs+sbRDda/Lch6LLIbQ31i68U7c0r6655OFOoRtdVitfI+Fcgu2C+noYobni',1,'2024-08-23 11:03:42','2024-09-13 11:52:53','unique12345',100006,'2024-08-23 11:03:42','2024-09-06 11:52:53','hadesDbSvcUser@172.19.0.1',0),('KTDemc4I2Q9h6D+GCex3AT8+N5L1qXrLwGVuOPX2ZPJdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:23:09','2024-06-18 05:23:09','unique12345',100067,'2024-06-11 05:23:09','2024-06-11 05:23:09','hadesDbSvcUser@172.19.0.1',0),('KvddPdQPfGc3IbmMswJo+cXGoG7ycZdZV/Hb/OmWc2tdVitfI+Fcgu2C+noYobni',1,'2024-09-27 09:02:01','2024-09-27 09:13:00','unique12345',100015,'2024-09-27 09:02:01','2024-09-27 09:13:00','hadesDbSvcUser@172.19.0.1',0),('kwRQGDhrYJZ/a9qK6bHICAplZGbnhrhpz3nbVFxBVItdVitfI+Fcgu2C+noYobni',1,'2024-06-27 09:49:08','2024-06-27 09:50:21','unique12345',100005,'2024-06-27 09:49:08','2024-06-27 09:50:21','hadesDbSvcUser@172.19.0.1',0),('kxFtL/9Jb2fZlRECv2ik7KTjwjVob/nDhPV0+Jp443BdVitfI+Fcgu2C+noYobni',1,'2024-05-21 11:05:33','2024-05-21 11:05:39','unique12345',100001,'2024-05-21 11:05:33','2024-05-21 11:05:39','hadesDbSvcUser@172.19.0.1',0),('KYfN7c6BoZfkwDO3jD/uIhHp+TxNfbSNb/BYUjQC504=',1,'2025-01-08 07:20:22','2025-01-15 07:20:24','unique12345',100056,'2025-01-08 07:20:22','2025-01-08 07:20:24','hadesDbSvcUser@172.19.0.1',0),('kZCPgEhFuMpLoqVpdfiUx6Vei5N02pl9rWBgOVlR2cg=',1,'2024-08-09 10:27:00','2024-08-16 10:27:03','unique12345',100138,'2024-08-09 10:27:00','2024-08-09 10:27:03','hadesDbSvcUser@172.19.0.1',0),('L+v5w12K9w0o5QhM5cAU53bs1PsYuKRbio3jl5I+KUZdVitfI+Fcgu2C+noYobni',1,'2024-06-19 06:58:08','2024-06-27 09:49:04','unique12345',100005,'2024-06-19 06:58:08','2024-06-27 09:49:04','hadesDbSvcUser@172.19.0.1',0),('L1Vyg+o0FaqLqmo82sJsDwtah9bmntSbW20ji1v5iYg=',1,'2024-09-25 11:58:12','2024-09-26 07:11:44','unique12345',100015,'2024-09-25 11:58:12','2024-09-26 07:11:44','hadesDbSvcUser@172.19.0.1',0),('l49N+X+Kfx98VcpUDG9RuKT+PyJbrUvihSH9x3eTfCtdVitfI+Fcgu2C+noYobni',1,'2024-07-30 06:57:16','2024-08-08 07:19:39','unique12345',100017,'2024-07-30 06:57:16','2024-08-08 07:19:39','hadesDbSvcUser@172.19.0.1',0),('L5iS7hcvT6o5+Bn72EmqIx5P1A/dYy31knNbQJWzwK9dVitfI+Fcgu2C+noYobni',1,'2024-06-26 09:10:03','2024-06-26 09:14:57','unique12345',100014,'2024-06-26 09:10:03','2024-06-26 09:14:57','hadesDbSvcUser@172.19.0.1',0),('L9jl77o0Iv0PrbG/FaA3B3+hxhW3n+28n0LQ1DVeTN5dVitfI+Fcgu2C+noYobni',1,'2024-12-18 07:26:21','2024-12-30 10:51:46','unique12345',100022,'2024-12-18 07:26:21','2024-12-23 10:51:46','hadesDbSvcUser@172.19.0.1',0),('LC6DNUhhEvWTbifwDsqOzLpgcepHAqTvtGus70ukP4JdVitfI+Fcgu2C+noYobni',1,'2024-08-21 05:32:20','2024-08-22 12:39:21','unique12345',100015,'2024-08-21 05:32:20','2024-08-22 12:39:21','hadesDbSvcUser@172.19.0.1',0),('LDG74tunbPevm15FTGTf1lfNtPRjItdmTTBImEGFzrFdVitfI+Fcgu2C+noYobni',1,'2024-06-03 02:36:17','2024-06-04 16:50:41','unique12345',100046,'2024-06-03 14:36:17','2024-06-04 16:50:41','hadesDbSvcUser@172.19.0.1',0),('LhSzmOarHcqyh6U61j/GIlmfCYtmspHkIr2O/t34gCddVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:08:08','2024-06-18 05:08:08','unique12345',100059,'2024-06-11 05:08:08','2024-06-11 05:08:08','hadesDbSvcUser@172.19.0.1',0),('lId+ItbrsOSXANRDcTY09jBNlK4BY0pm9ZN1ydVWrfNdVitfI+Fcgu2C+noYobni',1,'2024-12-09 05:43:52','2024-12-20 05:56:33','unique12345',100238,'2024-12-09 05:43:52','2024-12-13 05:56:33','hadesDbSvcUser@172.19.0.1',0),('Lm6tG4Hp1dPQMBHcAaicyHRCVbR1i1xHGzmGJ2ZP8QVdVitfI+Fcgu2C+noYobni',1,'2025-01-24 06:42:52','2025-01-24 06:43:35','unique12345',100294,'2025-01-24 06:42:52','2025-01-24 06:43:35','hadesDbSvcUser@172.19.0.1',0),('LPekDZ6cqRCM59QOJiKIEeyyfjMiE0ovshIjOtiQYLJdVitfI+Fcgu2C+noYobni',1,'2024-12-09 07:01:30','2024-12-16 07:02:55','unique12345',100072,'2024-12-09 07:01:30','2024-12-09 07:02:55','hadesDbSvcUser@172.19.0.1',0),('LPIGLMpjzyZLZNRuyYLp2dfR+R5D4PF0ol9lJRmRqnRdVitfI+Fcgu2C+noYobni',1,'2024-10-21 05:54:00','2024-10-21 06:22:42','unique12345',100015,'2024-10-21 05:54:00','2024-10-21 06:22:42','hadesDbSvcUser@172.19.0.1',0),('LQdXDAfhPBBvXkDypGMmy91HA9AiMOy2dRSu2qDSilddVitfI+Fcgu2C+noYobni',1,'2024-07-30 01:35:57','2024-08-06 01:35:57','unique12345',100118,'2024-07-30 13:35:57','2024-07-30 13:35:57','hadesDbSvcUser@172.19.0.1',0),('lqwmub/NqTxeq/Fa42F6TsgEqXwjrJB2f2mmiOY8kzxdVitfI+Fcgu2C+noYobni',1,'2024-07-16 01:04:48','2024-07-16 13:05:30','unique12345',100106,'2024-07-16 13:04:48','2024-07-16 13:05:30','hadesDbSvcUser@172.19.0.1',0),('lSeXa2RNsc3bo6wwxJZTLC9ujICKC2oT6BHGMDGA+F9dVitfI+Fcgu2C+noYobni',1,'2025-04-16 09:07:39','2025-04-23 09:07:52','unique12345',100015,'2025-04-16 09:07:39','2025-04-16 09:07:52','hadesDbSvcUser@172.19.0.1',0),('Ltqslc0Xfd2hme6U/N7lU2CPIrXcVURCWPcwhQ1GbJ9dVitfI+Fcgu2C+noYobni',1,'2024-09-25 11:56:39','2024-09-25 11:56:54','unique12345',100015,'2024-09-25 11:56:39','2024-09-25 11:56:54','hadesDbSvcUser@172.19.0.1',0),('lu2AgRBrVYoBxHOqslDQLeTepkSNljkm3xjVM/VWbH1dVitfI+Fcgu2C+noYobni',1,'2024-11-29 04:49:49','2024-12-04 06:34:22','unique12345',100022,'2024-11-29 04:49:49','2024-12-04 06:34:22','hadesDbSvcUser@172.19.0.1',0),('lvX4Xa7KfdZ7ypfgtcQ7RtbhHechSXKpGpGlntMKeWNdVitfI+Fcgu2C+noYobni',1,'2024-07-11 09:13:57','2024-07-11 09:14:01','unique12345',100106,'2024-07-11 09:13:57','2024-07-11 09:14:01','hadesDbSvcUser@172.19.0.1',0),('m+VFLWZtg5a4ysfd2lF9aSYwoqPeGrOSKLweqyV61GxdVitfI+Fcgu2C+noYobni',1,'2024-10-14 10:00:04','2024-10-21 10:00:04','unique12345',100286,'2024-10-14 10:00:04','2024-10-14 10:00:04','hadesDbSvcUser@172.19.0.1',0),('m+Z74Q7xAIAxBzZp6pkyhQvfX8AWVBSwV/5T1urjj9hdVitfI+Fcgu2C+noYobni',1,'2024-07-16 10:24:21','2024-07-16 10:33:18','unique12345',100106,'2024-07-16 10:24:21','2024-07-16 10:33:18','hadesDbSvcUser@172.19.0.1',0),('M1NKaT2tiiZW8EBUbQC23kSBrcUDzNrPvN9HEnMAuNddVitfI+Fcgu2C+noYobni',1,'2024-08-23 06:01:23','2024-09-04 05:24:30','unique12345',100017,'2024-08-23 06:01:23','2024-09-04 05:24:30','hadesDbSvcUser@172.19.0.1',0),('m1wQQhUkIbe2TEsN+G+XBWsyX4jKVu60CsvtLore8l1dVitfI+Fcgu2C+noYobni',1,'2024-09-23 02:13:24','2024-10-29 06:00:42','unique12345',100022,'2024-09-23 14:13:24','2024-10-29 06:00:42','hadesDbSvcUser@172.19.0.1',0),('m9Z5Mu09X+Gp9mdJiI2M0ksVT6sq7zrA9/vQ8wFAHVRdVitfI+Fcgu2C+noYobni',1,'2024-10-16 09:10:21','2024-11-15 02:37:41','unique12345',100182,'2024-10-16 09:10:21','2024-11-08 02:37:41','hadesDbSvcUser@172.19.0.1',0),('maxAPzQHj6Olmcj9zY6dhrxw8oVvJnTE39xyJxkBTd9dVitfI+Fcgu2C+noYobni',1,'2024-08-12 07:22:33','2024-08-23 04:23:14','unique12345',100032,'2024-08-12 07:22:33','2024-08-16 04:23:14','hadesDbSvcUser@172.19.0.1',0),('MBlEoc08bMHPrI1JW9AnBUU5JP+qCEiWS20hXH1aR5JdVitfI+Fcgu2C+noYobni',1,'2025-01-02 07:07:23','2025-01-15 11:03:25','unique12345',100005,'2025-01-02 07:07:23','2025-01-08 11:03:25','hadesDbSvcUser@172.19.0.1',0),('MCqIpHlt/Lk7m54d8/0gZgTo6xCSR/3sDqkU8IiBG3ZdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:37:09','2024-06-18 05:37:09','unique12345',100069,'2024-06-11 05:37:09','2024-06-11 05:37:09','hadesDbSvcUser@172.19.0.1',0),('MgKbZ7M9Zcg7BinN8pLg2SzzVWb5Gy154prWNwLhdY0=',1,'2024-09-23 10:08:55','2024-09-23 12:06:31','unique12345',100015,'2024-09-23 10:08:55','2024-09-23 12:06:31','hadesDbSvcUser@172.19.0.1',0),('MGunJ7z7PHZPDoyWkLTJnKfRNJJOdRjdXleBLUXujaZdVitfI+Fcgu2C+noYobni',1,'2025-04-16 01:22:10','2025-04-24 14:48:36','unique12345',100111,'2025-04-16 13:22:10','2025-04-17 14:48:36','hadesDbSvcUser@172.19.0.1',0),('mJhiJiRfXW7Jy7gVUR9C2+SSjm8woNlu3RMIw/BEUnxdVitfI+Fcgu2C+noYobni',1,'2024-08-12 07:11:58','2024-08-25 06:33:26','unique12345',100088,'2024-08-12 07:11:58','2024-08-18 06:33:26','hadesDbSvcUser@172.19.0.1',0),('mJur0U1w8KQwYlerrQ5HyPjVFkTCfXggeF5/CQMb0EpdVitfI+Fcgu2C+noYobni',1,'2024-06-24 05:12:49','2024-07-17 05:35:10','unique12345',100056,'2024-06-24 05:12:49','2024-07-10 05:35:10','hadesDbSvcUser@172.19.0.1',0),('MKEjDwxWUvPPcWwVFFG2oVk4VKxx083eL+UTTl/18A1dVitfI+Fcgu2C+noYobni',1,'2024-08-01 05:27:56','2024-09-10 05:56:45','unique12345',100112,'2024-08-01 05:27:56','2024-09-10 05:56:45','hadesDbSvcUser@172.19.0.1',0),('mkUploiGWeqoJ5BakSJaW0sUxt0stSbBKzAjci/aCw5dVitfI+Fcgu2C+noYobni',1,'2024-06-13 00:46:52','2024-06-13 12:48:00','unique12345',100081,'2024-06-13 12:46:52','2024-06-13 12:48:00','hadesDbSvcUser@172.19.0.1',0),('mm7rjcUWLc6KzgFFUI+jkzoDJCQhh8glThq4IB3RQp9dVitfI+Fcgu2C+noYobni',1,'2024-07-11 07:20:17','2024-07-11 08:12:29','unique12345',100106,'2024-07-11 07:20:17','2024-07-11 08:12:29','hadesDbSvcUser@172.19.0.1',0),('MqIuKxa5GWqcLrwErL3/EBpgQf3CKYW1nig1Ebw2xpRdVitfI+Fcgu2C+noYobni',1,'2025-06-27 05:23:01','2025-07-04 05:23:06','unique12345',100043,'2025-06-27 05:23:01','2025-06-27 05:23:06','hadesDbSvcUser@172.19.0.1',0),('MqR0p3rQjkKSjsGH/zFKK96Qch+9cOVgXkkVdBpJ/LFdVitfI+Fcgu2C+noYobni',1,'2024-08-05 00:15:27','2024-08-08 11:14:24','unique12345',100015,'2024-08-05 12:15:27','2024-08-08 11:14:24','hadesDbSvcUser@172.19.0.1',0),('MQT5cY7eo3aLAcTT1mv+MMN/XnwuyIBWZHpBYd4WnJZdVitfI+Fcgu2C+noYobni',1,'2024-07-25 07:16:14','2024-07-25 07:22:34','unique12345',100015,'2024-07-25 07:16:14','2024-07-25 07:22:34','hadesDbSvcUser@172.19.0.1',0),('MTpVbpWVpeiSBj+pcpjtIoVV3ROlinAMA9I1gpOJtrldVitfI+Fcgu2C+noYobni',1,'2024-06-06 10:23:30','2024-06-13 13:29:43','unique12345',100052,'2024-06-06 10:23:30','2024-06-06 13:29:43','hadesDbSvcUser@172.19.0.1',0),('mWa3nklsM0zIh9dnFb/9fjrLk3SL4Mh1k8zacAlwjotdVitfI+Fcgu2C+noYobni',1,'2024-06-18 00:54:40','2024-06-19 06:46:10','unique12345',100005,'2024-06-18 12:54:40','2024-06-19 06:46:10','hadesDbSvcUser@172.19.0.1',0),('Mx2QO+5LKzN7RFx1Aqk+W92Tm83uHyRs4UcTGx14n2VdVitfI+Fcgu2C+noYobni',1,'2024-06-05 08:48:50','2024-06-12 08:49:05','unique12345',100036,'2024-06-05 08:48:50','2024-06-05 08:49:05','hadesDbSvcUser@172.19.0.1',0),('MXN1f/ozTCMUceoqhX4PEV8nih0wbbS+Cao7QULcE09dVitfI+Fcgu2C+noYobni',1,'2024-10-17 05:02:19','2024-10-17 11:24:19','unique12345',100113,'2024-10-17 05:02:19','2024-10-17 11:24:19','hadesDbSvcUser@172.19.0.1',0),('MxQ2ZsLnnD4Ez0SnOStccY8Db+txtkKTun/YSQPYeypdVitfI+Fcgu2C+noYobni',1,'2024-12-13 05:09:49','2025-01-02 09:40:42','unique12345',100111,'2024-12-13 05:09:49','2024-12-26 09:40:42','hadesDbSvcUser@172.19.0.1',0),('MXwhpVyptaJT7MhnMUEvBor41Fepakr+uawUai4TJi1dVitfI+Fcgu2C+noYobni',1,'2024-05-22 01:20:10','2024-06-04 08:32:15','unique12345',100027,'2024-05-22 13:20:10','2024-05-28 08:32:15','hadesDbSvcUser@172.19.0.1',0),('mZcHaXyEBZswKO7OMuKLrRLZUy/7imJ3GfWEyaApOoldVitfI+Fcgu2C+noYobni',1,'2024-07-17 04:27:28','2024-07-17 06:00:31','unique12345',100015,'2024-07-17 04:27:28','2024-07-17 06:00:31','hadesDbSvcUser@172.19.0.1',0),('N/BXKVOGPIqr7edhls/9TOF36bDyPZQNNzbTsSMou5RdVitfI+Fcgu2C+noYobni',1,'2024-12-19 01:35:07','2024-12-30 12:41:40','unique12345',100320,'2024-12-19 13:35:07','2024-12-23 12:41:40','hadesDbSvcUser@172.19.0.1',0),('n0GSyhoQQ8QJyKFG6amrwAyL5s28JAdqt/GGbGD14IhdVitfI+Fcgu2C+noYobni',1,'2025-03-03 10:15:16','2025-03-10 10:15:31','unique12345',100033,'2025-03-03 10:15:16','2025-03-03 10:15:31','hadesDbSvcUser@172.19.0.1',0),('naPE0rONOuKJSRQjtBD/sgzlExtX9on2HmRhjwEY+f5dVitfI+Fcgu2C+noYobni',1,'2024-07-30 01:55:43','2024-08-06 01:55:43','unique12345',100119,'2024-07-30 13:55:43','2024-07-30 13:55:43','hadesDbSvcUser@172.19.0.1',0),('NC1RaiT2SJ9IgQpyH+WN+vpsi9zPBzjYtOAeRY5DNz1dVitfI+Fcgu2C+noYobni',1,'2025-02-07 05:08:16','2025-02-18 07:46:17','unique12345',100214,'2025-02-07 05:08:16','2025-02-11 07:46:17','hadesDbSvcUser@172.19.0.1',0),('nDhFE6Kk59TcIIgPuTyhur3GNt1pJlU5GXu35kIFZ+BdVitfI+Fcgu2C+noYobni',1,'2024-08-07 08:16:35','2024-08-14 08:16:35','unique12345',100135,'2024-08-07 08:16:35','2024-08-07 08:16:35','hadesDbSvcUser@172.19.0.1',0),('NDjVbDygO82tmU30PUTDMOgTphXe4MWKXFau8xF07BRdVitfI+Fcgu2C+noYobni',1,'2024-11-07 05:25:57','2024-11-14 14:11:35','unique12345',100017,'2024-11-07 05:25:57','2024-11-07 14:11:35','hadesDbSvcUser@172.19.0.1',0),('nIfz7XCbf8wxDPt9m/reM2ndfWtHO4XB+hnkC2sQll9dVitfI+Fcgu2C+noYobni',1,'2024-05-21 11:13:17','2024-05-21 11:50:25','unique12345',100015,'2024-05-21 11:13:17','2024-05-21 11:50:25','hadesDbSvcUser@172.19.0.1',0),('NK2dRSyx49hJax4GYV/E4KVIhmy/D5+FQo8tRIjfpsZdVitfI+Fcgu2C+noYobni',1,'2024-05-30 09:03:40','2024-05-30 09:03:49','unique12345',100014,'2024-05-30 09:03:40','2024-05-30 09:03:49','hadesDbSvcUser@172.19.0.1',0),('nLf3lsTddorGu6LSH/ZDYSMx7pTohoOiw5gjwTEnRiVdVitfI+Fcgu2C+noYobni',1,'2025-03-11 04:51:49','2025-03-18 09:07:40','unique12345',100064,'2025-03-11 04:51:49','2025-03-11 09:07:40','hadesDbSvcUser@172.19.0.1',0),('noRklzNEncgbXWhfW1H9/12Z41ZUcmBHfLQFpHu92oNdVitfI+Fcgu2C+noYobni',1,'2024-05-23 06:30:07','2024-05-23 13:24:12','unique12345',100017,'2024-05-23 06:30:07','2024-05-23 13:24:12','hadesDbSvcUser@172.19.0.1',0),('nOsGY33m0vF2aOricjXJv0D5BtYKfNyj0osnumBK9RldVitfI+Fcgu2C+noYobni',1,'2024-07-16 01:13:48','2024-07-16 13:19:11','unique12345',100015,'2024-07-16 13:13:48','2024-07-16 13:19:11','hadesDbSvcUser@172.19.0.1',0),('nPuPOtoxVGLt3+ncQMPS4+mzu6LkexmAGVJU9opgcWBdVitfI+Fcgu2C+noYobni',1,'2024-10-14 00:21:14','2024-10-21 00:21:14','unique12345',100288,'2024-10-14 12:21:14','2024-10-14 12:21:14','hadesDbSvcUser@172.19.0.1',0),('nqb3xOnZnfFjGoUzH0Le+QTGlfvVpyl86z2bI0iFZK9dVitfI+Fcgu2C+noYobni',1,'2024-07-17 06:14:25','2024-07-17 06:14:28','unique12345',100015,'2024-07-17 06:14:25','2024-07-17 06:14:28','hadesDbSvcUser@172.19.0.1',0),('nSimxZ9nNWtRfAohez73YjW+kbkh5lhpUvh5OvcYKetdVitfI+Fcgu2C+noYobni',1,'2024-10-09 00:21:55','2024-10-10 11:49:04','unique12345',100015,'2024-10-09 12:21:55','2024-10-10 11:49:04','hadesDbSvcUser@172.19.0.1',0),('nSuUAeZSGb4dy/qNLSFpvJMYsaZyNvsY2suSJsXUjAldVitfI+Fcgu2C+noYobni',1,'2025-03-05 05:29:17','2025-03-12 05:29:36','unique12345',100022,'2025-03-05 05:29:17','2025-03-05 05:29:36','hadesDbSvcUser@172.19.0.1',0),('NT0+baRSgZkpwHWjHce3bTmG1mdUSpOAretyUynyHtBdVitfI+Fcgu2C+noYobni',1,'2024-06-20 08:29:58','2024-06-20 08:30:05','unique12345',100098,'2024-06-20 08:29:58','2024-06-20 08:30:05','hadesDbSvcUser@172.19.0.1',0),('nU1G2yST17VJxsj1SOOZLtWFhpvVvoVrbOz08ReBPpVdVitfI+Fcgu2C+noYobni',1,'2024-09-19 11:36:54','2024-10-10 06:02:49','unique12345',100005,'2024-09-19 11:36:54','2024-10-10 06:02:49','hadesDbSvcUser@172.19.0.1',0),('nVoMrGq8WaVn+An85ZADQK483efMDGgref+77pyfPn9dVitfI+Fcgu2C+noYobni',1,'2025-03-13 07:40:21','2025-03-13 10:28:34','unique12345',100526,'2025-03-13 07:40:21','2025-03-13 10:28:34','hadesDbSvcUser@172.19.0.1',0),('NxKimEZH7UvVH5G0YAQqTLy32jk+3BbYN7wkzFOhH6VdVitfI+Fcgu2C+noYobni',1,'2024-06-13 05:15:54','2024-06-13 05:15:57','unique12345',100039,'2024-06-13 05:15:54','2024-06-13 05:15:57','hadesDbSvcUser@172.19.0.1',0),('nxOii0Rb5s9rR/ssVTPa/qe2lJ9kW/SQ3VfqMfE7+EBdVitfI+Fcgu2C+noYobni',1,'2024-12-12 06:42:18','2025-01-27 13:18:25','unique12345',100112,'2024-12-12 06:42:18','2025-01-20 13:18:25','hadesDbSvcUser@172.19.0.1',0),('nY9nqCc45l7A9ueemzzQtUTWrDmcsLDma+egG5ibcSZdVitfI+Fcgu2C+noYobni',1,'2024-11-12 10:19:41','2024-11-25 13:08:07','unique12345',100005,'2024-11-12 10:19:41','2024-11-18 13:08:07','hadesDbSvcUser@172.19.0.1',0),('nytvKspJz6Y83Cekzfyo6Ism4x8/Azljk0RZxHXSbSg=',1,'2024-08-23 03:57:25','2024-08-30 15:58:59','unique12345',100108,'2024-08-23 15:57:25','2024-08-23 15:58:59','hadesDbSvcUser@172.19.0.1',0),('O0RSG/LiG2me8Ctq8w9ofimnwdSBhvUuWnsNcI9bf05dVitfI+Fcgu2C+noYobni',1,'2024-08-08 07:07:34','2024-08-08 07:09:07','unique12345',6030,'2024-08-08 07:07:34','2024-08-08 07:08:45','root@172.19.0.1',0),('o2PPuIbRSZSYwC+s1Fdl70uGg+A+TqCboqKrtSweOp5dVitfI+Fcgu2C+noYobni',1,'2024-06-18 08:05:34','2024-06-18 08:20:27','unique12345',100099,'2024-06-18 08:05:34','2024-06-18 08:20:27','hadesDbSvcUser@172.19.0.1',0),('O8uch+09vVPINs+8iQjJ2aocQDk0CqaFQcBdm/6SlZNdVitfI+Fcgu2C+noYobni',1,'2024-11-06 05:31:16','2025-01-07 00:17:48','unique12345',100311,'2024-11-06 05:31:16','2024-12-31 00:17:48','hadesDbSvcUser@172.19.0.1',0),('o9s/KtblIRhx7xaPqQxLtL4WWI0JVv4H+psm7akvE4BdVitfI+Fcgu2C+noYobni',1,'2024-11-07 05:27:19','2024-11-22 10:25:04','unique12345',100023,'2024-11-07 05:27:19','2024-11-15 10:25:04','hadesDbSvcUser@172.19.0.1',0),('obW+tPMCZ5XXgXkDS1Bt4/lhyU1tDUWiaHOxXQjfMetdVitfI+Fcgu2C+noYobni',1,'2024-10-02 07:08:37','2024-10-22 04:53:04','unique12345',100006,'2024-10-02 07:08:37','2024-10-22 04:53:04','hadesDbSvcUser@172.19.0.1',0),('OBX2v/fqSRenkdmb1DHkCCoqkg8YlgWiTmXIFrc5sFxdVitfI+Fcgu2C+noYobni',1,'2025-06-05 11:51:31','2025-06-12 11:53:28','unique12345',100053,'2025-06-05 11:51:31','2025-06-05 11:53:28','hadesDbSvcUser@172.19.0.1',0),('ocPxXAH/hFL3xXwQB9Idwkmn9e4mq0v7FZDr+mwuHQddVitfI+Fcgu2C+noYobni',1,'2024-09-13 05:08:02','2024-09-20 06:20:14','unique12345',100213,'2024-09-13 05:08:02','2024-09-13 06:20:14','hadesDbSvcUser@172.19.0.1',0),('od3kE3CIcvKzFrWW10C+IIGmjtCv10gW/cu3jDQrxOBdVitfI+Fcgu2C+noYobni',1,'2024-09-03 11:08:05','2024-09-10 11:55:43','unique12345',100015,'2024-09-03 11:08:05','2024-09-10 11:55:43','hadesDbSvcUser@172.19.0.1',0),('ODd5fYAG9yL/qHv/0gYMiZqlUZHzIlKlGOGjDIj2c2FdVitfI+Fcgu2C+noYobni',1,'2024-07-31 06:09:39','2024-08-07 06:09:39','unique12345',100127,'2024-07-31 06:09:39','2024-07-31 06:09:39','hadesDbSvcUser@172.19.0.1',0),('odfrokSSQexmF4YuSz87PkC3c8sb3kza/bCp5/2NIb9dVitfI+Fcgu2C+noYobni',1,'2024-05-21 10:00:06','2024-05-21 10:05:47','unique12345',100000,'2024-05-21 10:00:06','2024-05-21 10:05:48','hadesDbSvcUser@172.19.0.1',0),('OekxVrNoufjwFTS4uzJpz9C2Z8KD3naFPyZTCpj+cY9dVitfI+Fcgu2C+noYobni',1,'2024-11-12 04:13:08','2024-12-25 08:17:47','unique12345',100213,'2024-11-12 04:13:08','2024-12-18 08:17:47','hadesDbSvcUser@172.19.0.1',0),('oeq4NPOo0FhjipflKVAIBByuUKHShAusZ0CjH7yHsxddVitfI+Fcgu2C+noYobni',1,'2024-06-06 10:06:36','2024-06-14 05:08:36','unique12345',100053,'2024-06-06 10:06:36','2024-06-07 05:08:36','hadesDbSvcUser@172.19.0.1',0),('oIpDTvqbuxU0j0re41O55Y0twj69XLknzNQAlcasNgNdVitfI+Fcgu2C+noYobni',1,'2024-08-02 00:18:19','2024-08-15 11:50:24','unique12345',100023,'2024-08-02 12:18:19','2024-08-08 11:50:24','hadesDbSvcUser@172.19.0.1',0),('OkU5jisvbupbMDTBKuYdfHubGyob1RxNbpwS4YxsRC5dVitfI+Fcgu2C+noYobni',1,'2024-05-28 01:28:15','2024-05-28 01:31:18','unique12345',100039,'2024-05-28 01:28:15','2024-05-28 01:31:18','hadesDbSvcUser@172.19.0.1',0),('oL1rqukZH8KpZ7x1rWhIimoe0I+hM8AlySsddZqyypxdVitfI+Fcgu2C+noYobni',1,'2024-05-21 11:50:45','2024-05-29 07:10:29','unique12345',100015,'2024-05-21 11:50:45','2024-05-29 07:10:29','hadesDbSvcUser@172.19.0.1',0),('omJDrl6C/RBuGUUrY2GHIibHbllvoC9PiFxy+r+sSxJdVitfI+Fcgu2C+noYobni',1,'2025-01-24 06:40:42','2025-01-24 06:41:00','unique12345',100294,'2025-01-24 06:40:42','2025-01-24 06:41:00','hadesDbSvcUser@172.19.0.1',0),('OoCg9r2hpJp07ypU7V9YDZbBeYEYEhgc/nznoxgCXtZdVitfI+Fcgu2C+noYobni',1,'2024-07-08 05:50:56','2024-07-18 11:06:25','unique12345',100027,'2024-07-08 05:50:56','2024-07-11 11:06:25','hadesDbSvcUser@172.19.0.1',0),('OqUGmkUqWof+7iSUWg40y5II0jzrlk4kLPwZYozKXXxdVitfI+Fcgu2C+noYobni',1,'2024-12-19 00:34:50','2024-12-26 06:12:37','unique12345',100037,'2024-12-19 00:34:50','2024-12-19 06:12:37','hadesDbSvcUser@172.19.0.1',0),('or/GHb3QFnucFqYB5Ql1BbJxjeoNu+N07IwqAWpWFq5dVitfI+Fcgu2C+noYobni',1,'2024-09-27 09:13:03','2024-09-30 04:12:46','unique12345',100015,'2024-09-27 09:13:03','2024-09-30 04:12:46','hadesDbSvcUser@172.19.0.1',0),('ORHZHBDyJbs+SDD8vcx6W6AdRIqL0OkFltgo/n/+W/5dVitfI+Fcgu2C+noYobni',1,'2025-01-08 01:34:40','2025-01-15 01:42:00','unique12345',100238,'2025-01-08 01:34:40','2025-01-08 01:42:00','hadesDbSvcUser@172.19.0.1',0),('ORmOj2a+f/QAYNvRFvj5MaeC+3LcVXsoMZ0qiuFZ8BVdVitfI+Fcgu2C+noYobni',1,'2024-05-24 02:49:02','2024-07-06 14:16:17','unique12345',100032,'2024-05-24 14:49:02','2024-07-06 14:16:17','hadesDbSvcUser@172.19.0.1',0),('OrOSirUfj/3yn0zlqBFW9KE2ZjO/ddyGcNAbD5Ve91pdVitfI+Fcgu2C+noYobni',1,'2025-02-05 09:50:56','2025-02-12 09:51:55','unique12345',100033,'2025-02-05 09:50:56','2025-02-05 09:51:55','hadesDbSvcUser@172.19.0.1',0),('OtnQ6cXtvbPust0khkFZosXSwqWDywYekntLoU8LFJxdVitfI+Fcgu2C+noYobni',1,'2024-09-06 11:54:36','2024-09-23 11:13:23','unique12345',100049,'2024-09-06 11:54:36','2024-09-16 11:13:23','hadesDbSvcUser@172.19.0.1',0),('OWkxFArfbi8eS57pII7/YwigGddaA/RJd+Ivb9Xtuw9dVitfI+Fcgu2C+noYobni',1,'2025-01-08 11:51:38','2025-01-08 12:57:05','unique12345',100329,'2025-01-08 11:51:38','2025-01-08 12:57:05','hadesDbSvcUser@172.19.0.1',0),('oxen/H2XCXVQNxLwYEUnFMDy2WxfmzXrsXL93oZ8a6tdVitfI+Fcgu2C+noYobni',1,'2024-10-09 09:59:15','2024-10-09 12:18:33','unique12345',100015,'2024-10-09 09:59:15','2024-10-09 12:18:33','hadesDbSvcUser@172.19.0.1',0),('P0ZIfdlgWOHRwWRjCJrQ5bkIhTe4AeEDIF2qD4zRHPhdVitfI+Fcgu2C+noYobni',1,'2024-07-16 10:33:31','2024-07-16 12:53:16','unique12345',100015,'2024-07-16 10:33:31','2024-07-16 12:53:16','hadesDbSvcUser@172.19.0.1',0),('p10iDrB+j5Rel5V26JXs1WNE3nZdNNUCwyiz4jjrEZxdVitfI+Fcgu2C+noYobni',1,'2024-12-03 06:06:21','2024-12-10 06:13:01','unique12345',100023,'2024-12-03 06:06:21','2024-12-03 06:13:01','hadesDbSvcUser@172.19.0.1',0),('P2ejIz2iuBChd0XzyOG1gsoyiGjibb9rsaeAPof77GxdVitfI+Fcgu2C+noYobni',1,'2024-08-28 07:08:41','2024-08-28 11:06:13','unique12345',100015,'2024-08-28 07:08:41','2024-08-28 11:06:13','hadesDbSvcUser@172.19.0.1',0),('P62PBSMhjsRfOXXsGt4+PrF05mZaZZ7PwjKxn1xvXkZdVitfI+Fcgu2C+noYobni',1,'2024-05-24 05:31:58','2024-05-29 08:50:41','unique12345',100023,'2024-05-24 05:31:58','2024-05-29 08:50:41','hadesDbSvcUser@172.19.0.1',0),('P7NLzcCaYExvO6e8YwYrhZydTqHMWOqplTGnkCh8XUBdVitfI+Fcgu2C+noYobni',1,'2024-06-13 00:36:00','2024-06-13 12:41:06','unique12345',100080,'2024-06-13 12:36:00','2024-06-13 12:41:06','hadesDbSvcUser@172.19.0.1',0),('p9f7Vma76Eu0V0e0daG1qatETwLYzEnri/bgwid/WlNdVitfI+Fcgu2C+noYobni',1,'2024-09-05 04:29:25','2024-09-19 07:27:55','unique12345',100032,'2024-09-05 04:29:25','2024-09-12 07:27:55','hadesDbSvcUser@172.19.0.1',0),('paob2GgYC/25KepS/tBK3Z/fkpIOcCQ3c7G8m1I+wUhdVitfI+Fcgu2C+noYobni',1,'2024-05-23 11:43:06','2024-05-30 12:53:16','unique12345',100025,'2024-05-23 11:43:06','2024-05-23 12:53:16','hadesDbSvcUser@172.19.0.1',0),('paR5NTGWSC66e+WYpbQLDRS5FuDXzpAszP2RuvrV6KhdVitfI+Fcgu2C+noYobni',1,'2025-12-04 10:43:46','2025-12-11 10:44:12','unique12345',100005,'2025-12-04 10:43:46','2025-12-04 10:44:12','hadesDbSvcUser@172.19.0.1',0),('PbNwf+RiN/KabN7S0gqxXar7Q60xTJXsoplDykkyWmldVitfI+Fcgu2C+noYobni',1,'2024-06-11 09:27:06','2024-06-18 12:54:32','unique12345',100005,'2024-06-11 09:27:06','2024-06-18 12:54:32','hadesDbSvcUser@172.19.0.1',0),('pfLWnlQa5sKuAeMt7E7H6rD9wwboJAIMNvxv+dKlTKtdVitfI+Fcgu2C+noYobni',1,'2024-10-29 06:00:46','2024-10-29 06:01:46','unique12345',100022,'2024-10-29 06:00:46','2024-10-29 06:01:46','hadesDbSvcUser@172.19.0.1',0),('pGefx/QpYfpM2rPC6+vyp7+m8XzB63QzoL96yJxsc25dVitfI+Fcgu2C+noYobni',1,'2024-06-10 11:50:39','2024-06-17 12:58:41','unique12345',100028,'2024-06-10 11:50:39','2024-06-10 12:58:41','hadesDbSvcUser@172.19.0.1',0),('Pj60/T4qc8xotlB5LewyBKlC0H476r2gkHQgxDwNNUBdVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:40:24','2024-05-24 10:40:37','unique12345',100022,'2024-05-24 10:40:24','2024-05-24 10:40:37','hadesDbSvcUser@172.19.0.1',0),('pjC1k2eH3flLLuj/jLpcRQlTCDXA2VCbKlv/DhDdjlddVitfI+Fcgu2C+noYobni',1,'2024-09-11 04:06:45','2024-09-23 08:32:40','unique12345',100015,'2024-09-11 04:06:45','2024-09-23 08:32:40','hadesDbSvcUser@172.19.0.1',0),('PjshbB4utczSnV+KiBGwHebWQsCNnOr5fyiIGk2vdwBdVitfI+Fcgu2C+noYobni',1,'2024-12-17 00:10:26','2024-12-24 12:10:50','unique12345',100017,'2024-12-17 12:10:26','2024-12-17 12:10:50','hadesDbSvcUser@172.19.0.1',0),('POdq5KNhS/hliVwxVOBtLC8VDNNPby6q/XYZt/iUJlRdVitfI+Fcgu2C+noYobni',1,'2024-06-13 00:36:00','2024-06-13 12:44:37','unique12345',100017,'2024-06-13 12:36:00','2024-06-13 12:44:37','hadesDbSvcUser@172.19.0.1',0),('pPqFs5TFXMPE+gE2rQqJVzNj9YlMSLDi/FYDATFdTlRdVitfI+Fcgu2C+noYobni',1,'2024-09-27 05:36:56','2024-09-27 09:01:58','unique12345',100015,'2024-09-27 05:36:56','2024-09-27 09:01:58','hadesDbSvcUser@172.19.0.1',0),('prEqRrx+yJLv3EuESSCaVh0zrB6iGucIQogmwMZBXYZdVitfI+Fcgu2C+noYobni',1,'2024-05-28 01:32:38','2024-05-28 01:32:42','unique12345',100039,'2024-05-28 01:32:38','2024-05-28 01:32:42','hadesDbSvcUser@172.19.0.1',0),('pRWX7yE3JS5Rmm+9qMacaWEfMy81LvpfnWMdbBttfaZdVitfI+Fcgu2C+noYobni',1,'2024-05-28 11:12:56','2024-05-28 11:13:16','unique12345',100014,'2024-05-28 11:12:56','2024-05-28 11:13:16','hadesDbSvcUser@172.19.0.1',0),('PTma7D7rrSkLXC6w7U0LkawuLo6X1XXNsXhpY7zj6WldVitfI+Fcgu2C+noYobni',1,'2024-05-22 08:27:07','2024-05-24 10:46:28','unique12345',100021,'2024-05-22 08:27:07','2024-05-24 10:46:28','hadesDbSvcUser@172.19.0.1',0),('PuQkouM/weglaHa39Pghy+2FNYPNpeQfbZaSIzLtdcxdVitfI+Fcgu2C+noYobni',1,'2024-06-14 06:36:53','2024-06-14 08:02:28','unique12345',100039,'2024-06-14 06:36:53','2024-06-14 08:02:28','hadesDbSvcUser@172.19.0.1',0),('px5YesiMxUUYgG9jOpHX8bMN5CqAdXZ2RtY8sUYIHIBdVitfI+Fcgu2C+noYobni',1,'2025-04-17 08:51:56','2025-04-24 08:52:19','unique12345',100032,'2025-04-17 08:51:56','2025-04-17 08:52:19','hadesDbSvcUser@172.19.0.1',0),('pxJpwGuX2wdc124cNk6qySIzHj7PaHzTh2wplfrqMHFdVitfI+Fcgu2C+noYobni',1,'2024-05-21 10:07:06','2024-05-28 10:07:06','unique12345',100004,'2024-05-21 10:07:06','2024-05-21 10:07:06','hadesDbSvcUser@172.19.0.1',0),('PygiwYZzXcAeuVla6fm3Oq8EA5oE2DLYfwg56Ii/b2JdVitfI+Fcgu2C+noYobni',1,'2024-10-28 07:00:25','2024-10-28 07:00:52','unique12345',100294,'2024-10-28 07:00:25','2024-10-28 07:00:52','hadesDbSvcUser@172.19.0.1',0),('pziBYGMVDlyR6tXo9VMvXJxmkjb+xRWvs84uciu1wc5dVitfI+Fcgu2C+noYobni',1,'2025-03-04 08:04:33','2025-03-12 07:26:42','unique12345',100311,'2025-03-04 08:04:33','2025-03-05 07:26:42','hadesDbSvcUser@172.19.0.1',0),('pZL0+vVyJ8O+tX/X91u+7ypyJfK1Vjsbikgzf7OFokxdVitfI+Fcgu2C+noYobni',1,'2024-10-17 09:10:42','2024-11-04 10:18:31','unique12345',100053,'2024-10-17 09:10:42','2024-10-28 10:18:31','hadesDbSvcUser@172.19.0.1',0),('pZUUfjShqW33StzeN/CucQVqBMvapCXb986DG6ux0qVdVitfI+Fcgu2C+noYobni',1,'2024-06-25 04:18:21','2024-07-02 04:24:36','unique12345',100050,'2024-06-25 04:18:21','2024-06-25 04:24:36','hadesDbSvcUser@172.19.0.1',0),('q+ncoW4CXEnX0o05EKm2Q4jju3gUKPNgs4SZ9/g0mN9dVitfI+Fcgu2C+noYobni',1,'2024-10-03 07:27:00','2024-10-03 07:57:44','unique12345',100111,'2024-10-03 07:27:00','2024-10-03 07:57:44','hadesDbSvcUser@172.19.0.1',0),('Q/FYaXrhR5twnJauufi22irznHHWBG6UBFu3jvTvShddVitfI+Fcgu2C+noYobni',1,'2024-07-26 04:42:38','2024-08-01 10:33:19','unique12345',100111,'2024-07-26 04:42:38','2024-08-01 10:33:19','hadesDbSvcUser@172.19.0.1',0),('q/WRT/nWpD5sfvN5ByUhnGCrs/dISZNIxoBqBzs/MMhdVitfI+Fcgu2C+noYobni',1,'2025-03-18 09:07:54','2025-03-26 13:07:21','unique12345',100017,'2025-03-18 09:07:54','2025-03-19 13:07:21','hadesDbSvcUser@172.19.0.1',0),('Q1vF1TNMi/IT4Orr3QJjhQUEtaT7snqYUFgwZmk2uI1dVitfI+Fcgu2C+noYobni',1,'2024-10-11 08:00:47','2024-10-21 05:53:53','unique12345',100015,'2024-10-11 08:00:47','2024-10-21 05:53:53','hadesDbSvcUser@172.19.0.1',0),('Q49NDCvUk4Qr4bDR45uuNUOSlZ9hWFzt7mTKVWr4mGZdVitfI+Fcgu2C+noYobni',1,'2024-06-04 00:54:17','2024-06-14 14:44:21','unique12345',100021,'2024-06-04 12:54:17','2024-06-07 14:44:21','hadesDbSvcUser@172.19.0.1',0),('q7H3gZGheq7zm59HgL9xAYdv4h39MUbZlZ3LYOMXSP1dVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:40:40','2024-05-24 10:40:50','unique12345',100022,'2024-05-24 10:40:40','2024-05-24 10:40:50','hadesDbSvcUser@172.19.0.1',0),('QbSIlfA1p1UNpFNjxLYMIaQZbrdDRuevWJPZwu1WYUBdVitfI+Fcgu2C+noYobni',1,'2024-07-11 09:21:42','2024-07-11 09:22:59','unique12345',100015,'2024-07-11 09:21:42','2024-07-11 09:22:59','hadesDbSvcUser@172.19.0.1',0),('qCaSpY2twP5+XdHWQEaZJZX9xZwqJRLstJNEjMtGS+NdVitfI+Fcgu2C+noYobni',1,'2024-05-30 04:12:33','2024-05-30 08:58:16','unique12345',100005,'2024-05-30 04:12:33','2024-05-30 08:58:16','hadesDbSvcUser@172.19.0.1',0),('qcpgtptA7x0qT74rWTZtqY0kWLr8IUjX8dBLQAmds6ZdVitfI+Fcgu2C+noYobni',1,'2025-06-23 04:17:32','2025-06-30 12:13:45','unique12345',100015,'2025-06-23 04:17:32','2025-06-23 12:13:45','hadesDbSvcUser@172.19.0.1',0),('QDIu8rAV59Tjh2J9Lj9iXYBrQRMw1xTlPXGgmfJfJW4=',1,'2024-10-02 04:23:40','2024-10-05 17:49:29','unique12345',100272,'2024-10-02 04:23:40','2024-10-05 17:49:29','hadesDbSvcUser@172.19.0.1',0),('QEZA3XzB8fuzTfS55GRsgyVMJQ2+9ZvTFXNurwdO+6VdVitfI+Fcgu2C+noYobni',1,'2024-10-21 06:22:48','2024-10-28 07:22:52','unique12345',100015,'2024-10-21 06:22:48','2024-10-28 07:22:52','hadesDbSvcUser@172.19.0.1',0),('qF7FMzB5S+l6LtUbul1a4ZPXbOEaeumuEZBWy+DKpJVdVitfI+Fcgu2C+noYobni',1,'2024-12-16 10:37:45','2024-12-30 04:39:03','unique12345',100006,'2024-12-16 10:37:45','2024-12-23 04:39:03','hadesDbSvcUser@172.19.0.1',0),('QGsm5ZYMtAKeZ3CzIy4Z8DkYzT7kz3cxORZjxICmFsFdVitfI+Fcgu2C+noYobni',1,'2024-06-11 07:01:16','2024-06-18 07:01:19','unique12345',100072,'2024-06-11 07:01:16','2024-06-11 07:01:19','hadesDbSvcUser@172.19.0.1',0),('qHivjl9b3/qWJ2O1yIHGEtB9KbK9LJeFkoFlGu1e4MhdVitfI+Fcgu2C+noYobni',1,'2024-05-28 11:13:50','2024-05-28 11:14:45','unique12345',100014,'2024-05-28 11:13:50','2024-05-28 11:14:45','hadesDbSvcUser@172.19.0.1',0),('QJ4+shCOvKaBrE/FandpsjLiWhqCoHuhQZoeLsPe4k9dVitfI+Fcgu2C+noYobni',1,'2025-03-26 05:15:09','2025-04-09 06:13:14','unique12345',100015,'2025-03-26 05:15:09','2025-04-02 06:13:14','hadesDbSvcUser@172.19.0.1',0),('QKB8JT5eYe1x4uL0RmwQe9Wg1YCejPAA0ca18JmuqXhdVitfI+Fcgu2C+noYobni',1,'2024-08-01 11:06:38','2024-08-05 04:03:47','unique12345',100015,'2024-08-01 11:06:38','2024-08-05 04:03:47','hadesDbSvcUser@172.19.0.1',0),('QLuxYn51R6Ur7ARP5A/mTeS2F66n7PC/bV+dAO1fOytdVitfI+Fcgu2C+noYobni',1,'2024-08-07 02:08:58','2024-08-08 09:34:14','unique12345',100052,'2024-08-07 14:08:58','2024-08-08 09:34:14','hadesDbSvcUser@172.19.0.1',0),('qN4TZpRlgqhi0anznZdkPJ34iVdL7O8GAhMfkAm5H0NdVitfI+Fcgu2C+noYobni',1,'2024-10-30 09:26:39','2024-10-30 09:28:46','unique12345',100320,'2024-10-30 09:26:39','2024-10-30 09:28:46','hadesDbSvcUser@172.19.0.1',0),('QNupI1OQLnlkZ6IDktDI72eeQQsKGPpF+d0JIdx63jxdVitfI+Fcgu2C+noYobni',1,'2024-07-01 11:01:22','2024-07-01 11:05:21','unique12345',100015,'2024-07-01 11:01:22','2024-07-01 11:05:21','hadesDbSvcUser@172.19.0.1',0),('qP4ZqUM29/RWyI97165sSk5JWbMdPCF05zJrj6e45pRdVitfI+Fcgu2C+noYobni',1,'2024-06-17 06:07:33','2024-06-24 08:16:04','unique12345',100062,'2024-06-17 06:07:33','2024-06-17 08:16:04','hadesDbSvcUser@172.19.0.1',0),('qqgt6eVeqlpQNoulnrCDMeYcnUSwrxRh6wFYJ8zCQfRdVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:58:48','2024-05-24 10:59:12','unique12345',100022,'2024-05-24 10:58:48','2024-05-24 10:59:12','hadesDbSvcUser@172.19.0.1',0),('QT5ka0IDKiw3EAF6RNRIcwgFpxDxnmzRT/BksETMfZldVitfI+Fcgu2C+noYobni',1,'2024-12-03 06:07:40','2024-12-11 10:09:57','unique12345',100319,'2024-12-03 06:07:40','2024-12-04 10:09:57','hadesDbSvcUser@172.19.0.1',0),('QTcitzbr80neu7Iz8LScTWSeF4+Tn8BRqvEHhn7rviQ=',1,'2024-06-18 07:50:49','2024-06-25 08:55:31','unique12345',100070,'2024-06-18 07:50:49','2024-06-18 08:55:31','hadesDbSvcUser@172.19.0.1',0),('qWHe+/+BOvlGcFH8UHMIeurjZ7S13f5nK/cLIFlDMdA=',1,'2024-07-25 01:03:02','2024-07-30 10:52:19','unique12345',100112,'2024-07-25 13:03:02','2024-07-30 10:52:19','hadesDbSvcUser@172.19.0.1',0),('qwNXtWNnCVyLlCgyvuDMo4wTIAXT0LVHE0Q+LoqQyNpdVitfI+Fcgu2C+noYobni',1,'2024-06-04 00:40:08','2024-06-14 13:47:25','unique12345',100047,'2024-06-04 12:40:08','2024-06-07 13:47:25','hadesDbSvcUser@172.19.0.1',0),('QXpRD6KFuKLt9bpGOsBFP96YNFEX3SKt9zJNrgGrMhtdVitfI+Fcgu2C+noYobni',1,'2024-07-11 08:53:13','2024-07-11 08:54:19','unique12345',100015,'2024-07-11 08:53:13','2024-07-11 08:54:19','hadesDbSvcUser@172.19.0.1',0),('qY9s83iSJfAQYzUSVGXK8w5jD9gFe1K3a2SBh1CsQMpdVitfI+Fcgu2C+noYobni',1,'2024-11-04 08:53:29','2024-11-11 08:53:46','unique12345',100321,'2024-11-04 08:53:29','2024-11-04 08:53:46','hadesDbSvcUser@172.19.0.1',0),('qYI4M2ZE7inFk7s3n1NL3JJdwjSLFKICC22cqPAc8vpdVitfI+Fcgu2C+noYobni',1,'2024-05-22 04:06:26','2024-05-29 04:06:26','unique12345',100020,'2024-05-22 04:06:26','2024-05-22 04:06:26','hadesDbSvcUser@172.19.0.1',0),('QyJvA5Z10bPxIhbKbtn4teHNlFXPP0aUAUEcY+m9npJdVitfI+Fcgu2C+noYobni',1,'2024-10-28 02:10:00','2024-11-06 05:27:48','unique12345',100311,'2024-10-28 02:10:00','2024-11-06 05:27:48','hadesDbSvcUser@172.19.0.1',0),('QYL2GhrM5j4uOqHRGF5qKJb2IYC4H6jPcew5DGWfhyBdVitfI+Fcgu2C+noYobni',1,'2024-07-11 08:56:26','2024-07-11 08:57:24','unique12345',100015,'2024-07-11 08:56:26','2024-07-11 08:57:24','hadesDbSvcUser@172.19.0.1',0),('R0eVWPb90wAsPbT22aAMBsHxVrgxiLFymeCptaRZiN5dVitfI+Fcgu2C+noYobni',1,'2024-11-27 06:24:45','2024-12-16 10:53:33','unique12345',100017,'2024-11-27 06:24:45','2024-12-09 10:53:33','hadesDbSvcUser@172.19.0.1',0),('r5VUR1mnxH1IlqiV/ucEtjyqLKO2w7LdxNGW1y2eD4JdVitfI+Fcgu2C+noYobni',1,'2024-07-11 07:18:12','2024-07-11 07:19:00','unique12345',100106,'2024-07-11 07:18:12','2024-07-11 07:19:00','hadesDbSvcUser@172.19.0.1',0),('RAGmGoNI/Few15LWGrC+TafhFk23V5mRlhLXE5N1821dVitfI+Fcgu2C+noYobni',1,'2024-12-13 06:11:27','2024-12-23 05:07:34','unique12345',100319,'2024-12-13 06:11:27','2024-12-16 05:07:34','hadesDbSvcUser@172.19.0.1',0),('rB1zAQYQ6i7nmVaTcV1+D57u/IWdLC+QpqSuaiDnoYJdVitfI+Fcgu2C+noYobni',1,'2025-04-11 11:26:18','2025-04-24 05:00:18','unique12345',100017,'2025-04-11 11:26:18','2025-04-17 05:00:18','hadesDbSvcUser@172.19.0.1',0),('rc0wf1+0jkJ5o9FRgKx34R8ugkMMEo3cl6oT1fxsNM0=',1,'2024-06-13 06:03:26','2024-06-20 06:03:26','unique12345',100075,'2024-06-13 06:03:26','2024-06-13 06:03:26','hadesDbSvcUser@172.19.0.1',0),('rd/YEiuiBJBo5MYBIteis+5GxNo9i5rzpON0bsjwsKNdVitfI+Fcgu2C+noYobni',1,'2025-06-06 06:33:11','2025-06-13 06:36:31','unique12345',100006,'2025-06-06 06:33:11','2025-06-06 06:36:31','hadesDbSvcUser@172.19.0.1',0),('Rddg9aNl+HyZXxAwkXgIYy+NXFog3ek1SviEutEzEd9dVitfI+Fcgu2C+noYobni',1,'2024-05-21 05:59:20','2024-05-21 06:35:16','unique12345',100002,'2024-05-21 05:59:20','2024-05-21 06:35:16','hadesDbSvcUser@172.19.0.1',0),('RFysNgLJKh86ZnlnSH1IEFez+Wrfs5Uoohmf44238wRdVitfI+Fcgu2C+noYobni',1,'2024-05-21 11:05:52','2024-05-21 11:09:52','unique12345',100001,'2024-05-21 11:05:52','2024-05-21 11:09:52','hadesDbSvcUser@172.19.0.1',0),('RFZCqEDDsJflSlpdPsoUy74i0xhbqmRkFjHHqsaZm+VdVitfI+Fcgu2C+noYobni',1,'2024-10-14 09:59:04','2024-10-21 09:59:04','unique12345',100285,'2024-10-14 09:59:04','2024-10-14 09:59:04','hadesDbSvcUser@172.19.0.1',0),('Rj2VyNCSOWkD84MD7qzDOEwQm2fr3napSldC1CkniWZdVitfI+Fcgu2C+noYobni',1,'2024-06-03 02:26:29','2024-06-03 14:36:05','unique12345',100046,'2024-06-03 14:26:29','2024-06-03 14:36:05','hadesDbSvcUser@172.19.0.1',0),('rlgNj/z43XUZhcFj40e6nTQ1oezVUS2DLHKfwJZSS81dVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:28:36','2024-05-24 10:40:09','unique12345',100022,'2024-05-24 10:28:36','2024-05-24 10:40:09','hadesDbSvcUser@172.19.0.1',0),('rMwp6dKZQgSIyoU5VgfFfurWsVnrbYs7XxaKb7X/CGRdVitfI+Fcgu2C+noYobni',1,'2024-05-30 08:58:33','2024-06-11 06:59:52','unique12345',100005,'2024-05-30 08:58:33','2024-06-11 06:59:52','hadesDbSvcUser@172.19.0.1',0),('rNrWlkXSb7VkpYd6z8v7b+4M6jtjigUXvcXS5PU77fE=',1,'2025-01-30 01:18:43','2025-02-24 13:11:14','unique12345',100112,'2025-01-30 13:18:43','2025-02-24 13:11:14','hadesDbSvcUser@172.19.0.1',0),('roRGKY1lVYK9aCDz5KSMu3lgc/2rt7ZGQ31Ah2MLwqtdVitfI+Fcgu2C+noYobni',1,'2024-11-18 07:47:39','2024-11-25 10:45:58','unique12345',100056,'2024-11-18 07:47:39','2024-11-18 10:45:58','hadesDbSvcUser@172.19.0.1',0),('rPLF31OYOygntP1myNZzgpmU/9akXOZQbK1FvME4KktdVitfI+Fcgu2C+noYobni',1,'2024-09-12 08:30:33','2024-09-12 08:39:14','unique12345',100114,'2024-09-12 08:30:33','2024-09-12 08:39:14','hadesDbSvcUser@172.19.0.1',0),('rQjbSSep5NuXj4OfdX2dExw6MP/RgWTqB7+A0KZMnB1dVitfI+Fcgu2C+noYobni',1,'2024-11-06 10:10:13','2024-11-14 04:50:59','unique12345',100105,'2024-11-06 10:10:13','2024-11-07 04:50:59','hadesDbSvcUser@172.19.0.1',0),('RsAGlApz6PgLg8fn5hSIbfwaOeqWqnIOG0sUzLT/wTtdVitfI+Fcgu2C+noYobni',1,'2024-10-17 11:24:32','2024-10-24 11:24:33','unique12345',100113,'2024-10-17 11:24:32','2024-10-17 11:24:33','hadesDbSvcUser@172.19.0.1',0),('RW7mI1ZGmztdDloe0g04s35sX6YMoRdOP0TVdF+t6SJdVitfI+Fcgu2C+noYobni',1,'2024-09-26 07:17:15','2024-09-26 08:29:37','unique12345',100015,'2024-09-26 07:17:15','2024-09-26 08:29:37','hadesDbSvcUser@172.19.0.1',0),('rw9Rp0wF2pFdr1aJjuh8Kce4teuXeAqSvnoVIEvIhEhdVitfI+Fcgu2C+noYobni',1,'2024-09-10 06:12:23','2024-09-11 05:27:17','unique12345',100112,'2024-09-10 06:12:23','2024-09-11 05:27:17','hadesDbSvcUser@172.19.0.1',0),('RxtXp41GGMcH0ncDl1IxNP9tDIlksatVfFJckuhUKuddVitfI+Fcgu2C+noYobni',1,'2024-05-21 10:06:07','2024-05-21 11:05:16','unique12345',100001,'2024-05-21 10:06:07','2024-05-21 11:05:16','hadesDbSvcUser@172.19.0.1',0),('RXZEuuWo5/s3MT1/sw3uZvYE7vggVxJDrYltrmGN4JFdVitfI+Fcgu2C+noYobni',1,'2024-09-25 11:57:21','2024-09-25 11:58:03','unique12345',100015,'2024-09-25 11:57:21','2024-09-25 11:58:03','hadesDbSvcUser@172.19.0.1',0),('rXzUEiL/DA0V3zbSFvHCEAbmtcId6bBnGiwD+RKEU6hdVitfI+Fcgu2C+noYobni',1,'2025-01-03 04:45:00','2025-01-10 04:58:56','unique12345',100213,'2025-01-03 04:45:00','2025-01-03 04:58:56','hadesDbSvcUser@172.19.0.1',0),('rzKsLYV0HqgzEWlfywaxjMOumFXxxhkwOulehMETeMddVitfI+Fcgu2C+noYobni',1,'2024-07-16 01:12:24','2024-07-16 13:38:16','unique12345',100106,'2024-07-16 13:12:24','2024-07-16 13:38:16','hadesDbSvcUser@172.19.0.1',0),('S+S1V3Ry9ssRaIKVWbpvvCc/3r6LVxuKTs56+D8Tw7VdVitfI+Fcgu2C+noYobni',1,'2024-06-18 08:15:28','2024-06-18 08:57:10','unique12345',100098,'2024-06-18 08:15:28','2024-06-18 08:57:10','hadesDbSvcUser@172.19.0.1',0),('s2FzNqPG2HKADTB+2KFHw6/Wu+d1PVdPQy9/noiBJgpdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:09:30','2024-06-18 05:10:08','unique12345',100025,'2024-06-11 05:09:30','2024-06-11 05:10:08','hadesDbSvcUser@172.19.0.1',0),('s4zJxqwel82wmt0kyFUiTq2W9kx72ca2PWoa+Xc3nR5dVitfI+Fcgu2C+noYobni',1,'2024-08-29 03:17:16','2024-09-03 11:05:58','unique12345',100015,'2024-08-29 15:17:16','2024-09-03 11:05:58','hadesDbSvcUser@172.19.0.1',0),('saP+N60kA292pleD38XDr4ZZyns7rs5N9G0Nyn2ElJtdVitfI+Fcgu2C+noYobni',1,'2025-06-24 08:44:07','2025-07-01 08:44:52','unique12345',100526,'2025-06-24 08:44:07','2025-06-24 08:44:52','hadesDbSvcUser@172.19.0.1',0),('SBIG0c8B1MUYgMqE7Gi8XNo7uK3i30+x4sXV3m8eUdhdVitfI+Fcgu2C+noYobni',1,'2024-10-30 11:44:09','2024-10-30 12:04:22','unique12345',100005,'2024-10-30 11:44:09','2024-10-30 12:04:22','hadesDbSvcUser@172.19.0.1',0),('sC5Hkyl6NEav6qKNcbwCGg2QHQNHEJAhpVt5sdY+yppdVitfI+Fcgu2C+noYobni',1,'2024-07-26 10:51:27','2024-08-02 10:54:54','unique12345',100023,'2024-07-26 10:51:27','2024-07-26 10:54:54','hadesDbSvcUser@172.19.0.1',0),('sdWg4MCs0Jxf5dzMzQVV+JuU+Cy7W9Y/5PiHK2QyrERdVitfI+Fcgu2C+noYobni',1,'2024-09-10 11:55:51','2024-09-11 04:06:38','unique12345',100015,'2024-09-10 11:55:51','2024-09-11 04:06:38','hadesDbSvcUser@172.19.0.1',0),('sF9JN1iiuhVdHWf27zQ/1FQaJeIwDosdUeRz6ORMc7pdVitfI+Fcgu2C+noYobni',1,'2024-07-08 05:13:34','2024-07-15 05:13:41','unique12345',100104,'2024-07-08 05:13:34','2024-07-08 05:13:41','hadesDbSvcUser@172.19.0.1',0),('sGf3In45R+tow/C4pkxPDDMKwB9cDxB5JZlix+3CJx1dVitfI+Fcgu2C+noYobni',1,'2025-01-02 06:57:00','2025-01-09 07:13:38','unique12345',100072,'2025-01-02 06:57:00','2025-01-02 07:13:38','hadesDbSvcUser@172.19.0.1',0),('SGotOldhSGn+RNpCk4dtRWYaNoAluYdDAcXSlAajPnpdVitfI+Fcgu2C+noYobni',1,'2024-10-10 00:31:25','2024-10-11 04:29:29','unique12345',100015,'2024-10-10 12:31:25','2024-10-11 04:29:29','hadesDbSvcUser@172.19.0.1',0),('sjNCpi04s9DDkQtq7Y/KiTIJ1DIGnfnKduavtI3Jj6ZdVitfI+Fcgu2C+noYobni',1,'2024-07-11 09:39:54','2024-07-11 09:41:29','unique12345',100015,'2024-07-11 09:39:54','2024-07-11 09:41:29','hadesDbSvcUser@172.19.0.1',0),('sKLE8k76l1MMnaNivehZXN0CzgzaebWfYwu1zRAv1h5dVitfI+Fcgu2C+noYobni',1,'2024-10-30 00:04:25','2024-11-06 12:50:27','unique12345',100005,'2024-10-30 12:04:25','2024-10-30 12:50:27','hadesDbSvcUser@172.19.0.1',0),('slLoK6s81PZIfiQtt5c4nL6eIB6hOypPauOgjA/nQ2JdVitfI+Fcgu2C+noYobni',1,'2024-05-23 08:11:47','2024-05-30 12:04:43','unique12345',100026,'2024-05-23 08:11:47','2024-05-23 12:04:43','hadesDbSvcUser@172.19.0.1',0),('SLOVpyWkW3IMUrgIfZcIC3LlzGh83ZucxevXOVmZWiZdVitfI+Fcgu2C+noYobni',1,'2024-09-27 01:50:26','2024-10-04 01:50:39','unique12345',100215,'2024-09-27 01:50:26','2024-09-27 01:50:39','hadesDbSvcUser@172.19.0.1',0),('StMSJfuY19YKsQTzBVxeMNY0e5I3hWl35YiqCLieiC9dVitfI+Fcgu2C+noYobni',1,'2024-06-28 11:54:27','2024-07-05 12:02:41','unique12345',100052,'2024-06-28 11:54:27','2024-06-28 12:02:41','hadesDbSvcUser@172.19.0.1',0),('SU8Y5X6/bRa+XbE86E7Y5VdfdLclJ7/gP6Hm19/u8tVdVitfI+Fcgu2C+noYobni',1,'2025-04-03 01:28:04','2025-04-25 08:11:37','unique12345',100022,'2025-04-03 13:28:04','2025-04-18 08:11:37','hadesDbSvcUser@172.19.0.1',0),('SwclzgYKyYUUg+NO+bxgvvtKS/oSQj6PdHtgmzfswRc=',1,'2024-06-19 09:31:13','2024-06-19 09:49:41','unique12345',100015,'2024-06-19 09:31:13','2024-06-19 09:49:41','hadesDbSvcUser@172.19.0.1',0),('SXRxoZ1bL3ota9Cb+dKDVcdfRkJgyENfDLQYFaTn4qtdVitfI+Fcgu2C+noYobni',1,'2024-09-25 11:56:55','2024-09-25 11:57:19','unique12345',100015,'2024-09-25 11:56:55','2024-09-25 11:57:19','hadesDbSvcUser@172.19.0.1',0),('T+Ss8EiloTq6xEj8qFo0YWVjLqbHwgiSiQE3vxPzHZddVitfI+Fcgu2C+noYobni',1,'2024-10-01 08:57:52','2024-10-08 13:34:13','unique12345',100114,'2024-10-01 08:57:52','2024-10-01 13:34:13','hadesDbSvcUser@172.19.0.1',0),('t08eZqyj8ZyYWvgycc6rVapRfICTadMDAVxuj1vhYeRdVitfI+Fcgu2C+noYobni',1,'2025-09-20 09:30:43','2025-09-20 09:30:48','unique12345',100294,'2025-09-20 09:30:43','2025-09-20 09:30:48','hadesDbSvcUser@172.19.0.1',0),('t4bO67PAcauUgdSRVTetAm6qIc5eNidpvNgIFms/wPc=',1,'2024-07-01 07:08:31','2024-07-10 06:16:38','unique12345',100022,'2024-07-01 07:08:31','2024-07-10 06:16:38','hadesDbSvcUser@172.19.0.1',0),('T5m0AFfKFFjU+u0KkUKoq9qtEXQX35CvQFCLFUmJnT1dVitfI+Fcgu2C+noYobni',1,'2024-05-30 07:04:57','2024-06-11 13:05:46','unique12345',100023,'2024-05-30 07:04:57','2024-06-11 13:05:46','hadesDbSvcUser@172.19.0.1',0),('t6aD0UMPkqV6MS//JrqQ6PAzFtdmnzCYdqSfVePkM+9dVitfI+Fcgu2C+noYobni',1,'2024-09-20 00:38:29','2024-10-01 06:06:54','unique12345',100112,'2024-09-20 12:38:29','2024-10-01 06:06:54','hadesDbSvcUser@172.19.0.1',0),('Tdg5k8bUrySrwjw2qKTJd1yBGe4xHmVCzECV682nRTNdVitfI+Fcgu2C+noYobni',1,'2024-10-17 05:52:11','2024-10-24 05:52:15','unique12345',100291,'2024-10-17 05:52:11','2024-10-17 05:52:15','hadesDbSvcUser@172.19.0.1',0),('Tdqthdob60LQEWN/G7y5n/apflX1AnRnp4kMPWuGNWhdVitfI+Fcgu2C+noYobni',1,'2024-12-02 11:34:00','2024-12-09 11:59:11','unique12345',100049,'2024-12-02 11:34:00','2024-12-02 11:59:11','hadesDbSvcUser@172.19.0.1',0),('TeoC6VP3sop8pIgbtvLE9zTF0ooiC9Cnjt17yIB1Aa9dVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:59:24','2024-05-29 05:22:25','unique12345',100005,'2024-05-24 10:59:24','2024-05-29 05:22:25','hadesDbSvcUser@172.19.0.1',0),('TFtAP9+cplxJodHZW059QQJ0EJSsAq2vDm/b1pjqfHVdVitfI+Fcgu2C+noYobni',1,'2024-09-23 10:08:44','2024-09-23 10:08:48','unique12345',100015,'2024-09-23 10:08:44','2024-09-23 10:08:48','hadesDbSvcUser@172.19.0.1',0),('tidNr0VEfnTKYajD3GtT7zET1CF5Bb1o+19/RjqdqppdVitfI+Fcgu2C+noYobni',1,'2024-07-11 09:50:01','2024-07-11 11:01:17','unique12345',100015,'2024-07-11 09:50:01','2024-07-11 11:01:17','hadesDbSvcUser@172.19.0.1',0),('tiL4jiVJCyv2MZxg8EDVq3Jv/Am/w7286inZMx/RnW9dVitfI+Fcgu2C+noYobni',1,'2024-08-02 06:42:52','2024-08-02 06:52:34','unique12345',100113,'2024-08-02 06:42:52','2024-08-02 06:52:34','hadesDbSvcUser@172.19.0.1',0),('TMNaGfhtbOpVOY2g8BL6aVLPcp+ZFe/szjHayhHGkGddVitfI+Fcgu2C+noYobni',1,'2024-07-16 10:18:22','2024-07-16 10:19:09','unique12345',100106,'2024-07-16 10:18:22','2024-07-16 10:19:09','hadesDbSvcUser@172.19.0.1',0),('Tn2Bxhg2AHXNAZD4OD3rMdYmu4yI0Zga+MxuntKIMGddVitfI+Fcgu2C+noYobni',1,'2024-08-12 05:38:39','2024-08-30 03:29:27','unique12345',100037,'2024-08-12 05:38:39','2024-08-23 03:29:27','hadesDbSvcUser@172.19.0.1',0),('TnlBsEqPJMeeUJ/N0XA20tBenfIbPRQQOl3PBQ8zmvFdVitfI+Fcgu2C+noYobni',1,'2024-07-30 01:28:09','2024-08-06 01:28:09','unique12345',100117,'2024-07-30 13:28:09','2024-07-30 13:28:09','hadesDbSvcUser@172.19.0.1',0),('TOfKUBhZvNFf7q6tg5DDii6HpptkcE3j4tZ5YbfzgCZdVitfI+Fcgu2C+noYobni',1,'2025-01-17 09:08:25','2025-01-29 02:20:56','unique12345',100064,'2025-01-17 09:08:25','2025-01-22 02:20:56','hadesDbSvcUser@172.19.0.1',0),('tpTi5idvzcCZPlWTw1mIAmIw/AYqE0CKQ0MgjaELVTBdVitfI+Fcgu2C+noYobni',1,'2024-07-25 03:41:57','2024-08-01 04:00:09','unique12345',100088,'2024-07-25 03:41:57','2024-07-25 04:00:09','hadesDbSvcUser@172.19.0.1',0),('trlNcRXHXuQxzpCJ7SC77OyLzu/R9sTr+iHcUGR7wvddVitfI+Fcgu2C+noYobni',1,'2024-09-23 08:32:48','2024-09-23 08:41:14','unique12345',100015,'2024-09-23 08:32:48','2024-09-23 08:41:14','hadesDbSvcUser@172.19.0.1',0),('TS0eoyQelA710Wpdx6fMBtgE6jnhHwhQFMY1o0E0vwxdVitfI+Fcgu2C+noYobni',1,'2025-01-24 11:31:42','2025-01-24 11:31:58','unique12345',100294,'2025-01-24 11:31:42','2025-01-24 11:31:58','hadesDbSvcUser@172.19.0.1',0),('TtrsMyQDynsbw/9WeRw47o699uvT16Oo6ktecNYOMpJdVitfI+Fcgu2C+noYobni',1,'2024-09-09 07:40:45','2024-09-10 04:40:38','unique12345',100111,'2024-09-09 19:40:45','2024-09-10 04:40:38','hadesDbSvcUser@172.19.0.1',0),('Tup6eYBSzY1phS03WtuulPKKMiEOlr8M01uaOtCj7ik=',1,'2025-01-06 09:16:10','2025-02-13 05:16:49','unique12345',100015,'2025-01-06 09:16:10','2025-02-06 05:16:49','hadesDbSvcUser@172.19.0.1',0),('tX5ISBsT975oooYRuAX+KTsAFtabUb42lsLScoTu7MpdVitfI+Fcgu2C+noYobni',1,'2024-11-25 05:03:51','2024-12-10 04:50:08','unique12345',100373,'2024-11-25 05:03:51','2024-12-03 04:50:08','hadesDbSvcUser@172.19.0.1',0),('tXzb0qcQnMvGaGrsTQw/0ZYk5F8BfyunQjISL3B7YdddVitfI+Fcgu2C+noYobni',1,'2024-11-18 10:28:58','2024-11-18 10:29:31','unique12345',100064,'2024-11-18 10:28:58','2024-11-18 10:29:31','hadesDbSvcUser@172.19.0.1',0),('tzy7TgAx42QfXbXkRqf1LLZWLJTiIq+gbKfhvPDjK+VdVitfI+Fcgu2C+noYobni',1,'2024-12-05 09:22:57','2024-12-17 12:57:32','unique12345',100015,'2024-12-05 09:22:57','2024-12-17 12:57:32','hadesDbSvcUser@172.19.0.1',0),('U/h7BnS5RiFAtcsTtXmxGdhNMi28wuyqZKZGxr3ow4ZdVitfI+Fcgu2C+noYobni',1,'2024-05-29 07:11:08','2024-05-30 08:59:23','unique12345',100015,'2024-05-29 07:11:08','2024-05-30 08:59:23','hadesDbSvcUser@172.19.0.1',0),('u1YEQ0eAI9YfA3HzWJhCyt68sospnS7uumwNpAPcC1hdVitfI+Fcgu2C+noYobni',1,'2024-06-27 09:50:25','2024-06-28 11:59:38','unique12345',100005,'2024-06-27 09:50:25','2024-06-28 11:59:38','hadesDbSvcUser@172.19.0.1',0),('u76E3ovZMj5mKV8ghQWoX3YikCaBcZoX+RT+ELBBkV5dVitfI+Fcgu2C+noYobni',1,'2025-01-13 06:33:02','2025-01-28 05:16:35','unique12345',100311,'2025-01-13 06:33:02','2025-01-21 05:16:35','hadesDbSvcUser@172.19.0.1',0),('u9tMYz+sRNJyJr2SOGg7bDrzDz01tPiH9B0q6ciR9pJdVitfI+Fcgu2C+noYobni',1,'2024-10-15 07:55:14','2024-10-22 08:52:32','unique12345',100049,'2024-10-15 07:55:14','2024-10-15 08:52:32','hadesDbSvcUser@172.19.0.1',0),('uaXfjgz92PJXLXelqpALRbNxWin9H5bKYrwZAjnxpN1dVitfI+Fcgu2C+noYobni',1,'2024-09-25 11:58:06','2024-09-25 11:58:10','unique12345',100015,'2024-09-25 11:58:06','2024-09-25 11:58:10','hadesDbSvcUser@172.19.0.1',0),('Ucy8n/UBiPeemIq3+/7r6UiHDm3FI/uXdc6DDYWNLSBdVitfI+Fcgu2C+noYobni',1,'2025-01-03 04:39:56','2025-01-28 05:12:41','unique12345',100214,'2025-01-03 04:39:56','2025-01-21 05:12:41','hadesDbSvcUser@172.19.0.1',0),('uEtW1Zstu6gqPiGmUmlNZgbkHSH54tQgwIGgPm8kNCBdVitfI+Fcgu2C+noYobni',1,'2024-06-13 04:18:19','2024-06-13 05:15:23','unique12345',100039,'2024-06-13 04:18:19','2024-06-13 05:15:23','hadesDbSvcUser@172.19.0.1',0),('UFpjvy2uVWtPjj+o/0tVX4R2es4HCOPo+3V+3BQ2DDNdVitfI+Fcgu2C+noYobni',1,'2024-07-12 05:42:42','2024-07-18 13:23:52','unique12345',100017,'2024-07-12 05:42:42','2024-07-18 13:23:52','hadesDbSvcUser@172.19.0.1',0),('UFsvVZq8vJBS4qJkSoSjtkXAv/YroydA8q/6aYeP+VNdVitfI+Fcgu2C+noYobni',1,'2024-05-23 01:37:15','2024-05-23 13:40:43','unique12345',100017,'2024-05-23 13:37:15','2024-05-23 13:40:43','hadesDbSvcUser@172.19.0.1',0),('uFuowLIdr6HBjMhkaRHrpnT1koAPXmnMYfTV3Y/R2NRdVitfI+Fcgu2C+noYobni',1,'2024-08-08 07:10:03','2024-08-08 07:22:07','unique12345',6030,'2024-08-08 07:10:03','2024-08-08 07:20:37','root@172.19.0.1',0),('ugvv73l6agBoJvyY6kwXje/pVQg2fvJJUAPoNPHv9gZdVitfI+Fcgu2C+noYobni',1,'2024-12-18 10:51:29','2024-12-23 11:47:07','unique12345',100015,'2024-12-18 10:51:29','2024-12-23 11:47:07','hadesDbSvcUser@172.19.0.1',0),('uLFOOC0bPfB2k/obz9sUKFxlyDDfzPB23pEVLdDFrptdVitfI+Fcgu2C+noYobni',1,'2024-07-01 01:10:38','2024-07-10 10:25:44','unique12345',100033,'2024-07-01 01:10:38','2024-07-03 10:25:44','hadesDbSvcUser@172.19.0.1',0),('uLyP72ZZd5yeqFr+o4Qxd4C5r1mFMGHJ3NcoTRPUyO9dVitfI+Fcgu2C+noYobni',1,'2024-07-16 00:57:53','2024-07-16 12:59:15','unique12345',100106,'2024-07-16 12:57:53','2024-07-16 12:59:15','hadesDbSvcUser@172.19.0.1',0),('UmCKVfmxUAd4+VbfpvOSOG2tOiRKG21orlwzWIngnEBdVitfI+Fcgu2C+noYobni',1,'2024-08-08 09:08:06','2024-08-15 12:12:05','unique12345',100005,'2024-08-08 09:08:06','2024-08-08 12:12:05','hadesDbSvcUser@172.19.0.1',0),('UmZIuna+8oiBe6xDfw9BGar1ohz8+ZmRk55xt/KlZhJdVitfI+Fcgu2C+noYobni',1,'2025-11-19 00:27:18','2025-11-26 12:27:24','unique12345',100006,'2025-11-19 12:27:18','2025-11-19 12:27:24','hadesDbSvcUser@172.19.0.1',0),('UNcKQs/Ab5PYHLMnlhyoS70L0z7ylNMm+y/SDOh0XdFdVitfI+Fcgu2C+noYobni',1,'2024-09-30 04:12:49','2024-09-30 08:31:24','unique12345',100015,'2024-09-30 04:12:49','2024-09-30 08:31:24','hadesDbSvcUser@172.19.0.1',0),('uo5i4YWamggf2XzhLHFpDAgaLvgObiSSId+EtPjh3WVdVitfI+Fcgu2C+noYobni',1,'2024-06-06 00:35:00','2024-06-14 06:25:41','unique12345',100054,'2024-06-06 12:35:00','2024-06-07 06:25:41','hadesDbSvcUser@172.19.0.1',0),('urJxvnx1J3gBo8ZSI2l3S22ZfZw/JXk82EjF/h4SIOBdVitfI+Fcgu2C+noYobni',1,'2024-11-08 00:55:31','2024-11-22 05:41:44','unique12345',100112,'2024-11-08 12:55:31','2024-11-15 05:41:44','hadesDbSvcUser@172.19.0.1',0),('usw8b85e0zLau7NzI7p5iaUbLiqY6/o/1vBj0M+XjWBdVitfI+Fcgu2C+noYobni',1,'2024-05-30 09:08:48','2024-05-30 09:08:53','unique12345',100014,'2024-05-30 09:08:48','2024-05-30 09:08:53','hadesDbSvcUser@172.19.0.1',0),('UtU/LQTLi9mymLTocbudrX58YgrtaROrPRmmrdLpe8hdVitfI+Fcgu2C+noYobni',1,'2024-08-12 09:47:39','2024-08-19 11:12:53','unique12345',100015,'2024-08-12 09:47:39','2024-08-19 11:12:53','hadesDbSvcUser@172.19.0.1',0),('uUWyuui1AKl+AdswEWwaLKLvYVSze6JZ30uKsz162opdVitfI+Fcgu2C+noYobni',1,'2024-09-20 02:08:18','2024-10-01 13:25:57','unique12345',100238,'2024-09-20 02:08:18','2024-10-01 13:25:57','hadesDbSvcUser@172.19.0.1',0),('Uw0RbJ7cSM+7MmjjLBfFPJXXBhk0EC0ps9DWyToydJ5dVitfI+Fcgu2C+noYobni',1,'2024-08-20 03:36:26','2024-08-27 15:36:27','unique12345',100027,'2024-08-20 15:36:26','2024-08-20 15:36:27','hadesDbSvcUser@172.19.0.1',0),('UZcs6Nz/06BGddHSFBbu/PmRwJI4Z/ph5FI2JQ11H9FdVitfI+Fcgu2C+noYobni',1,'2024-08-08 07:05:55','2024-08-08 07:09:07','unique12345',6030,'2024-08-08 07:05:55','2024-08-08 07:08:37','root@172.19.0.1',0),('uZG0RNU80RP3OigXrX5oW90Xq6onKCMeFkRsQFMNEaZdVitfI+Fcgu2C+noYobni',1,'2024-07-01 00:15:08','2024-08-20 09:49:49','unique12345',100006,'2024-07-01 12:15:08','2024-08-13 09:49:49','hadesDbSvcUser@172.19.0.1',0),('v/E44upfoXec28dd8J/aozU7WfL8AMkJF+oPizRn//JdVitfI+Fcgu2C+noYobni',1,'2025-05-26 01:31:33','2025-06-04 07:10:47','unique12345',100111,'2025-05-26 13:31:33','2025-05-28 07:10:47','hadesDbSvcUser@172.19.0.1',0),('V0Scywz2pDpZz1t/m6KyxPKmtNcbZHL+Ju80dnMzv9ldVitfI+Fcgu2C+noYobni',1,'2024-05-28 01:27:58','2024-05-28 01:28:02','unique12345',100039,'2024-05-28 01:27:58','2024-05-28 01:28:02','hadesDbSvcUser@172.19.0.1',0),('V18gm68Edpilo+/hy4kZZ76wXb9bKxwMPBlcZdpZxcRdVitfI+Fcgu2C+noYobni',1,'2024-07-16 01:01:40','2024-07-16 13:03:46','unique12345',100106,'2024-07-16 13:01:40','2024-07-16 13:03:46','hadesDbSvcUser@172.19.0.1',0),('V7DVPJOhSLTS2hbI4lHKxDq+dFtEUeMK0JGy6fC/6nddVitfI+Fcgu2C+noYobni',1,'2024-11-18 08:17:28','2024-12-13 11:30:57','unique12345',100006,'2024-11-18 08:17:28','2024-12-06 11:30:57','hadesDbSvcUser@172.19.0.1',0),('v8OrdnHo8EA7d6GP6DUh0t/itWaQuAYikWVYLi1OqqldVitfI+Fcgu2C+noYobni',1,'2024-06-13 00:50:09','2024-06-20 12:51:03','unique12345',100081,'2024-06-13 12:50:09','2024-06-13 12:51:03','hadesDbSvcUser@172.19.0.1',0),('VaWPz6BUrqglPZRJ4i+ljKZf8QnJsBH47F5Ub3mPBB5dVitfI+Fcgu2C+noYobni',1,'2025-01-06 10:02:11','2025-01-13 10:18:33','unique12345',100064,'2025-01-06 10:02:11','2025-01-06 10:18:33','hadesDbSvcUser@172.19.0.1',0),('Vef18MstYthO5rrHp4FFHKJTVoKLwDHuF6lhxn/vfW9dVitfI+Fcgu2C+noYobni',1,'2024-05-24 02:10:17','2024-05-31 14:23:31','unique12345',100006,'2024-05-24 14:10:17','2024-05-24 14:23:31','hadesDbSvcUser@172.19.0.1',0),('vg9jz4ecAGDlzmINTOuSSC6a1bwbo0hJaBmnjVKlO4ddVitfI+Fcgu2C+noYobni',1,'2025-01-24 06:45:54','2025-01-24 06:46:01','unique12345',100294,'2025-01-24 06:45:54','2025-01-24 06:46:01','hadesDbSvcUser@172.19.0.1',0),('vGdzjT9qrHM/py3x/v3qNC1rEN7iJtv9RuQ98Bm1tjldVitfI+Fcgu2C+noYobni',1,'2024-08-19 11:57:56','2024-08-29 09:18:00','unique12345',100005,'2024-08-19 11:57:56','2024-08-29 09:18:00','hadesDbSvcUser@172.19.0.1',0),('vgv+CFNL6P6wVMqdDmJtfrfv4u04CnsWsWc2iRjLeVldVitfI+Fcgu2C+noYobni',1,'2024-10-10 11:51:35','2024-10-10 12:07:39','unique12345',100015,'2024-10-10 11:51:35','2024-10-10 12:07:39','hadesDbSvcUser@172.19.0.1',0),('Vi9SorPTFvJVxBXyKr4Gou9I7YokDGqbLZ44oIgRYmpdVitfI+Fcgu2C+noYobni',1,'2024-10-10 06:02:53','2024-10-22 13:21:26','unique12345',100005,'2024-10-10 06:02:53','2024-10-15 13:21:26','hadesDbSvcUser@172.19.0.1',0),('vJsGIZbz/sfjzoYo4RkEWzFwViA991LQrpD5NHog3P9dVitfI+Fcgu2C+noYobni',1,'2024-07-30 10:43:27','2024-08-06 10:43:27','unique12345',100115,'2024-07-30 10:43:27','2024-07-30 10:43:27','hadesDbSvcUser@172.19.0.1',0),('VkjD17n7KRLMfRk0UwfAu4KAIJ9nt00WLxRIfOUSbVBdVitfI+Fcgu2C+noYobni',1,'2024-06-17 05:18:14','2024-06-17 05:24:15','unique12345',100062,'2024-06-17 05:18:14','2024-06-17 05:24:15','hadesDbSvcUser@172.19.0.1',0),('vkL24P+SgZJv291ymxmYy7CQE5uaJYYNUglNa9jhkqhdVitfI+Fcgu2C+noYobni',1,'2024-11-13 04:43:49','2024-11-22 09:01:10','unique12345',100049,'2024-11-13 04:43:49','2024-11-15 09:01:10','hadesDbSvcUser@172.19.0.1',0),('vKnqVcxuNU08VO7QHijWyX/Hu+Bmoc+qveZcfzYmDKddVitfI+Fcgu2C+noYobni',1,'2024-07-16 01:26:59','2024-07-16 13:36:18','unique12345',100015,'2024-07-16 13:26:59','2024-07-16 13:36:18','hadesDbSvcUser@172.19.0.1',0),('VL1WkOCuBsu6SVsPrb3ooUfsT2iCEQkyw2/2QXY6aYFdVitfI+Fcgu2C+noYobni',1,'2024-07-11 11:12:34','2024-07-11 11:30:40','unique12345',100106,'2024-07-11 11:12:34','2024-07-11 11:30:40','hadesDbSvcUser@172.19.0.1',0),('vNJg0eMjGjEL+8vCo3OxOouIw3UhcMK+nIaRfN7ZKvNdVitfI+Fcgu2C+noYobni',1,'2024-10-16 08:10:32','2024-10-23 08:12:04','unique12345',100023,'2024-10-16 08:10:32','2024-10-16 08:12:04','hadesDbSvcUser@172.19.0.1',0),('vnjv4y2Xuyqc029bIWYreWU3Ji7BWS3/1I7jOGB6KPtdVitfI+Fcgu2C+noYobni',1,'2024-12-20 09:11:27','2024-12-27 09:13:59','unique12345',100033,'2024-12-20 09:11:27','2024-12-20 09:13:59','hadesDbSvcUser@172.19.0.1',0),('voaQQMOEvum1GtiznBAaCRPAoo4xbFiUndbYcnG0+ohdVitfI+Fcgu2C+noYobni',1,'2024-12-10 02:23:42','2024-12-19 12:14:47','unique12345',100320,'2024-12-10 02:23:42','2024-12-12 12:14:47','hadesDbSvcUser@172.19.0.1',0),('vp+mezxV05lXWftyqIk58ZkFlQ1p/aYzTKiphvJ5SJBdVitfI+Fcgu2C+noYobni',1,'2024-06-04 04:50:46','2024-06-04 16:56:33','unique12345',100046,'2024-06-04 16:50:46','2024-06-04 16:56:33','hadesDbSvcUser@172.19.0.1',0),('vQBAAu8mirv++7p2qELiaPkDL5luD3QMG8gJNp9n211dVitfI+Fcgu2C+noYobni',1,'2024-06-13 06:03:27','2024-06-20 06:03:27','unique12345',100077,'2024-06-13 06:03:27','2024-06-13 06:03:27','hadesDbSvcUser@172.19.0.1',0),('VQG0r0Pap6epRnC6NUMgD+QAcxlhG0jz6D6gYvwK+qldVitfI+Fcgu2C+noYobni',1,'2024-05-21 10:49:58','2024-05-28 10:49:58','unique12345',100009,'2024-05-21 10:49:58','2024-05-21 10:49:58','hadesDbSvcUser@172.19.0.1',0),('vqlXJi+eZbdUTlxziZZAzEo73hoDGNrGjvrDzFv5jAw=',1,'2024-07-18 01:24:08','2024-07-20 16:20:18','unique12345',100017,'2024-07-18 13:24:08','2024-07-20 16:20:18','hadesDbSvcUser@172.19.0.1',0),('vrChDkwr0Aw4fwZzFsL+y5zml2nhECUev/B4e320kC1dVitfI+Fcgu2C+noYobni',1,'2024-10-17 05:03:35','2024-11-04 13:35:31','unique12345',100112,'2024-10-17 05:03:35','2024-10-28 13:35:31','hadesDbSvcUser@172.19.0.1',0),('VrfXkUVAiTyHhzXuhJYGA39wOLhNDKXkq3N9rpTrqDhdVitfI+Fcgu2C+noYobni',1,'2024-11-04 06:47:56','2024-11-11 06:48:17','unique12345',100106,'2024-11-04 06:47:56','2024-11-04 06:48:17','hadesDbSvcUser@172.19.0.1',0),('vRkLROrMCbaZr1ZC//pdb+dzadaRH+Z1c/LztxdcXnJdVitfI+Fcgu2C+noYobni',1,'2024-12-11 07:34:52','2024-12-18 07:35:06','unique12345',100049,'2024-12-11 07:34:52','2024-12-11 07:35:06','hadesDbSvcUser@172.19.0.1',0),('vs4yphmPITASkR5RExW/o3V+fsGOcoVdIpDwAeKieZVdVitfI+Fcgu2C+noYobni',1,'2025-06-11 10:46:53','2025-06-18 10:46:59','unique12345',100111,'2025-06-11 10:46:53','2025-06-11 10:46:59','hadesDbSvcUser@172.19.0.1',0),('Vv5xPkRki+PqHYNfZ+4dZduYh8zMz4LATilCt/1kSBZdVitfI+Fcgu2C+noYobni',1,'2024-09-12 04:31:59','2024-09-20 12:29:05','unique12345',100112,'2024-09-12 04:31:59','2024-09-20 12:29:05','hadesDbSvcUser@172.19.0.1',0),('Vv6qmIZXHivaYm68N7JjfoFYFl4atrE5hV6o+K/vSDJdVitfI+Fcgu2C+noYobni',1,'2024-06-07 01:05:27','2024-07-01 01:10:29','unique12345',100033,'2024-06-07 01:05:27','2024-07-01 01:10:29','hadesDbSvcUser@172.19.0.1',0),('VVITQNtU0JjUMtVbO3PSRJBIz4t1qO3s8rVsGmSaqDtdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:12:18','2024-06-13 05:09:46','unique12345',100062,'2024-06-11 05:12:18','2024-06-13 05:09:46','hadesDbSvcUser@172.19.0.1',0),('vWgSVcZxfh2SxOjnTzYzbM8bLvT/Ro44sBdkkIc2/W5dVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:28:21','2024-05-24 10:28:23','unique12345',100022,'2024-05-24 10:28:21','2024-05-24 10:28:23','hadesDbSvcUser@172.19.0.1',0),('w6ChRCdlyahMvyZhB8JvTIvbvPfU5bthbgRj1uQAbzBdVitfI+Fcgu2C+noYobni',1,'2025-05-14 10:12:23','2025-05-21 10:14:15','unique12345',100015,'2025-05-14 10:12:23','2025-05-14 10:14:15','hadesDbSvcUser@172.19.0.1',0),('WB130g6asRvuar/nsqzRATFtENR1dMfZeDMCd2SwahpdVitfI+Fcgu2C+noYobni',1,'2024-07-18 04:10:46','2024-07-22 07:09:50','unique12345',100106,'2024-07-18 04:10:46','2024-07-22 07:09:50','hadesDbSvcUser@172.19.0.1',0),('WcARj8Lzw/SUX1zCJO0/u29t3JlSNZzTq3UBxwsRZo1dVitfI+Fcgu2C+noYobni',1,'2024-06-13 00:44:22','2024-06-13 00:44:34','unique12345',100039,'2024-06-13 00:44:22','2024-06-13 00:44:34','hadesDbSvcUser@172.19.0.1',0),('wcDJniztn2cEoct6oTowj/LHQGeAkUchUkzgvHet0sZdVitfI+Fcgu2C+noYobni',1,'2024-10-29 06:01:52','2024-11-14 09:43:54','unique12345',100022,'2024-10-29 06:01:52','2024-11-14 09:43:54','hadesDbSvcUser@172.19.0.1',0),('WGBSLNF/jTFH8+o5/J+mcKHCU2ZQP//FBPZ2f0VTAbNdVitfI+Fcgu2C+noYobni',1,'2024-07-18 01:42:56','2024-07-29 12:34:39','unique12345',100043,'2024-07-18 13:42:56','2024-07-22 12:34:39','hadesDbSvcUser@172.19.0.1',0),('WHxeahWiv3TV6LdaQMZY3ybhP+Mn6I/yYxgDV/QSzM5dVitfI+Fcgu2C+noYobni',1,'2024-12-02 07:24:18','2024-12-09 07:24:27','unique12345',100330,'2024-12-02 07:24:18','2024-12-02 07:24:27','hadesDbSvcUser@172.19.0.1',0),('WjOvKjANSr1g1zKAqjBDpJ1/5vIILqJhRR9R0Ersy9hdVitfI+Fcgu2C+noYobni',1,'2024-07-11 08:57:31','2024-07-11 08:57:41','unique12345',100015,'2024-07-11 08:57:31','2024-07-11 08:57:41','hadesDbSvcUser@172.19.0.1',0),('WM5y6sjP4mPdvYjN9viNuEeaNKXpLNXqc+CKT2ll9YJdVitfI+Fcgu2C+noYobni',1,'2024-11-04 08:42:34','2024-11-18 05:36:07','unique12345',100015,'2024-11-04 08:42:34','2024-11-18 05:36:07','hadesDbSvcUser@172.19.0.1',0),('wmauXYiJs49ORqGPpL+0vFMPMq/ds70NytPbnj8EVoZdVitfI+Fcgu2C+noYobni',1,'2025-01-02 07:02:17','2025-01-02 09:32:13','unique12345',100064,'2025-01-02 07:02:17','2025-01-02 09:32:13','hadesDbSvcUser@172.19.0.1',0),('wMqhWDLB6G9l1JjtFPco3w8GKtIFIlz1ogS9u2uvf2NdVitfI+Fcgu2C+noYobni',1,'2024-07-11 09:14:41','2024-07-11 09:14:47','unique12345',100106,'2024-07-11 09:14:41','2024-07-11 09:14:47','hadesDbSvcUser@172.19.0.1',0),('WMWO3VEPMd/KdPJf1j1uzyK0JyLyShSyE7eV+3LSZO5dVitfI+Fcgu2C+noYobni',1,'2024-07-08 05:26:13','2024-07-08 05:30:50','unique12345',100015,'2024-07-08 05:26:13','2024-07-08 05:30:50','hadesDbSvcUser@172.19.0.1',0),('woda9um/v7Z3OaSW3MgXtfPEg+RLlmNqZNPkl/FRT1ldVitfI+Fcgu2C+noYobni',1,'2024-09-25 00:48:09','2024-10-02 01:47:41','unique12345',100243,'2024-09-25 00:48:09','2024-09-25 01:47:41','hadesDbSvcUser@172.19.0.1',0),('WogGrSharQjM4GvvoQEyUpd1bLMKzvYv29trUop3ZEldVitfI+Fcgu2C+noYobni',1,'2024-06-11 06:24:08','2024-06-18 06:49:53','unique12345',100073,'2024-06-11 06:24:08','2024-06-11 06:49:53','hadesDbSvcUser@172.19.0.1',0),('WOtg385Vkm3ZerVuzt8epS+Jj0MkzVpBJMi1DhOvRBRdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:44:35','2024-06-11 05:44:38','unique12345',100070,'2024-06-11 05:44:35','2024-06-11 05:44:38','hadesDbSvcUser@172.19.0.1',0),('WpMDXRGBb1zVZWAiUZ1BBnhT6s3a3HRz76WPMH2aI71dVitfI+Fcgu2C+noYobni',1,'2024-12-18 11:00:40','2025-01-06 04:49:45','unique12345',100182,'2024-12-18 23:00:40','2024-12-30 04:49:45','hadesDbSvcUser@172.19.0.1',0),('WPZgYyovkanI1wYuKIzu4prDEWPC2wvHnbvQoXCc4IZdVitfI+Fcgu2C+noYobni',1,'2025-02-18 05:13:46','2025-02-25 05:17:17','unique12345',100017,'2025-02-18 05:13:46','2025-02-18 05:17:17','hadesDbSvcUser@172.19.0.1',0),('wqb4pVbovVCUv0pX9bgGYwfaesUaJrw35DgKZ5SzSnpdVitfI+Fcgu2C+noYobni',1,'2024-06-13 00:50:35','2024-06-13 12:51:10','unique12345',100017,'2024-06-13 12:50:35','2024-06-13 12:51:10','hadesDbSvcUser@172.19.0.1',0),('wQsKWRzuvX/lgvP22FNJ4R14lr8AZlCaO/hknRaX6NNdVitfI+Fcgu2C+noYobni',1,'2024-05-24 03:48:51','2024-05-31 15:49:05','unique12345',100034,'2024-05-24 15:48:51','2024-05-24 15:49:05','hadesDbSvcUser@172.19.0.1',0),('WqzuPX7Ay13hgilcxriG+kHS7JUGep/NYp35/hZxzDNdVitfI+Fcgu2C+noYobni',1,'2024-11-18 05:36:16','2024-11-20 13:46:44','unique12345',100015,'2024-11-18 05:36:16','2024-11-20 13:46:44','hadesDbSvcUser@172.19.0.1',0),('wRJsnEx6m66TicmlwCmdJCQxs+m+1vVXi2xaqL5IL/hdVitfI+Fcgu2C+noYobni',1,'2024-11-06 08:40:10','2024-11-13 08:40:15','unique12345',100310,'2024-11-06 08:40:10','2024-11-06 08:40:15','hadesDbSvcUser@172.19.0.1',0),('WRw5dV1eC2FZ+7ofHgVYSQSd8g/UKacoHiRDvQoXUwZdVitfI+Fcgu2C+noYobni',1,'2024-10-11 05:07:29','2024-10-11 07:23:23','unique12345',100015,'2024-10-11 05:07:29','2024-10-11 07:23:23','hadesDbSvcUser@172.19.0.1',0),('WsKdncufxI/hzePdDle/2qkFC5nsOgKX/PQGsFWWjUddVitfI+Fcgu2C+noYobni',1,'2025-02-12 10:11:33','2025-02-19 10:11:38','unique12345',100032,'2025-02-12 10:11:33','2025-02-12 10:11:38','hadesDbSvcUser@172.19.0.1',0),('wSW6kjtuzTVfzXDEeJZzro8aBV6ImlUGkPzktRRRKrhdVitfI+Fcgu2C+noYobni',1,'2025-04-07 05:51:26','2025-04-07 17:53:01','unique12345',100526,'2025-04-07 17:51:26','2025-04-07 17:53:01','hadesDbSvcUser@172.19.0.1',0),('Wx9beKQGtfQyPMgnw/LxZhLkxU5GjWn6z1erBhfm5wJdVitfI+Fcgu2C+noYobni',1,'2024-05-23 09:47:06','2024-05-23 10:51:12','unique12345',100028,'2024-05-23 09:47:06','2024-05-23 10:51:12','hadesDbSvcUser@172.19.0.1',0),('X+IpFJZcrcaVAxPQfASY1pXHbugncQ9vqlHAVHfUrh5dVitfI+Fcgu2C+noYobni',1,'2024-06-20 08:30:19','2024-06-20 08:30:22','unique12345',100098,'2024-06-20 08:30:19','2024-06-20 08:30:22','hadesDbSvcUser@172.19.0.1',0),('X0hM7xLzyQaqRKIP60ChjuiRJf/nvcBfnYLsXL14/+ZdVitfI+Fcgu2C+noYobni',1,'2024-06-12 04:39:48','2024-06-12 04:40:02','unique12345',100070,'2024-06-12 04:39:48','2024-06-12 04:40:02','hadesDbSvcUser@172.19.0.1',0),('X0IVz7IGzcYu6Rb4OgJ1qARebqcNQn3IdAC6AXLXsl5dVitfI+Fcgu2C+noYobni',1,'2024-05-30 07:10:33','2024-06-06 07:10:34','unique12345',100044,'2024-05-30 07:10:33','2024-05-30 07:10:34','hadesDbSvcUser@172.19.0.1',0),('xbCyYn/X6DQggLTBMV9LXZ/wmwuU78wMeJSiDPtyL9M=',1,'2024-08-05 04:30:24','2024-08-12 05:13:22','unique12345',100056,'2024-08-05 04:30:24','2024-08-05 05:13:22','hadesDbSvcUser@172.19.0.1',0),('XCcYTlUuOzYHhTk9SWTuD9sIP0xsQuAeG+kmmWkTFYBdVitfI+Fcgu2C+noYobni',1,'2024-06-04 05:00:35','2024-06-04 17:00:47','unique12345',100046,'2024-06-04 17:00:35','2024-06-04 17:00:47','hadesDbSvcUser@172.19.0.1',0),('XCs4HqzBxyrjsxq0lFNX6Eu5zH8nXNZbzA/cr/WnwexdVitfI+Fcgu2C+noYobni',1,'2024-07-16 01:48:05','2024-07-23 13:48:22','unique12345',100108,'2024-07-16 13:48:05','2024-07-16 13:48:22','hadesDbSvcUser@172.19.0.1',0),('XDHqujpbc/at9W5Z7Cqirndz0fEnGGkpqtvrR/JTQRNdVitfI+Fcgu2C+noYobni',1,'2024-07-17 04:55:33','2024-07-24 04:56:23','unique12345',100109,'2024-07-17 04:55:33','2024-07-17 04:56:23','hadesDbSvcUser@172.19.0.1',0),('xg4DB6fGvRGxt6TiUxVDkpkQgpBWOIQVr96pOof2pR5dVitfI+Fcgu2C+noYobni',1,'2025-03-12 01:41:14','2025-03-27 08:33:23','unique12345',100112,'2025-03-12 13:41:14','2025-03-27 08:33:23','hadesDbSvcUser@172.19.0.1',0),('XGIBgLuLjsWCE+XVoK3LV9bzD2lmmG48jdHLfS7frlxdVitfI+Fcgu2C+noYobni',1,'2024-07-07 06:01:22','2024-07-14 06:53:30','unique12345',100032,'2024-07-07 06:01:22','2024-07-07 06:53:30','hadesDbSvcUser@172.19.0.1',0),('Xgx1y2IrL5wgUZ8cHF49huyPaoF5PFtDYgpXXMyFAZ1dVitfI+Fcgu2C+noYobni',1,'2024-08-05 05:43:33','2024-08-12 06:01:05','unique12345',100088,'2024-08-05 05:43:33','2024-08-05 06:01:05','hadesDbSvcUser@172.19.0.1',0),('XIXcLkfsltluf4DbLlBB3YiSHzAHH4t1v9lQUa1oyA5dVitfI+Fcgu2C+noYobni',1,'2024-05-30 06:39:25','2024-05-30 06:39:57','unique12345',100023,'2024-05-30 06:39:25','2024-05-30 06:39:57','hadesDbSvcUser@172.19.0.1',0),('xLCSigQs30ze7BCjdJ1H1KbQ9ppq5iqsMeX1lFMf3/JdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:40:48','2024-06-11 05:40:51','unique12345',100070,'2024-06-11 05:40:48','2024-06-11 05:40:51','hadesDbSvcUser@172.19.0.1',0),('xmeyd+oz1eOgt3O75GFRxzURyPIHlV/T4BjXzsHWVPpdVitfI+Fcgu2C+noYobni',1,'2025-01-13 05:31:53','2025-01-29 07:51:56','unique12345',100373,'2025-01-13 05:31:53','2025-01-22 07:51:56','hadesDbSvcUser@172.19.0.1',0),('xnFPm3RSSrsHI+Jkb9pCMaxKL6WfVhbvhq8XWpvHJRRdVitfI+Fcgu2C+noYobni',1,'2024-09-25 03:59:54','2024-09-25 11:56:36','unique12345',100015,'2024-09-25 03:59:54','2024-09-25 11:56:36','hadesDbSvcUser@172.19.0.1',0),('xnIvfCIItuBGaHCV2qVT1iqvRn/Eh1u2u82IsbRb375dVitfI+Fcgu2C+noYobni',1,'2025-04-04 10:03:52','2025-04-16 07:06:35','unique12345',100111,'2025-04-04 10:03:52','2025-04-09 07:06:35','hadesDbSvcUser@172.19.0.1',0),('xNizFb4I+QruoPepCzRgo0pNsUEBWdoHGWdM+FEqCiVdVitfI+Fcgu2C+noYobni',1,'2025-12-05 07:43:46','2025-12-12 07:43:47','unique12345',100112,'2025-12-05 07:43:46','2025-12-05 07:43:47','hadesDbSvcUser@172.19.0.1',0),('xqeXvjNUpNPT4sTxHHZXhS34WW3+H1bQdquNUoQxszBdVitfI+Fcgu2C+noYobni',1,'2024-07-16 01:05:36','2024-07-16 13:12:17','unique12345',100106,'2024-07-16 13:05:36','2024-07-16 13:12:17','hadesDbSvcUser@172.19.0.1',0),('XQubQoO2j+h+fohgp+D2xOAVTZ5TiPgSd0753SDKje5dVitfI+Fcgu2C+noYobni',1,'2024-07-02 07:30:10','2024-07-02 09:12:09','unique12345',100005,'2024-07-02 07:30:10','2024-07-02 09:12:09','hadesDbSvcUser@172.19.0.1',0),('XrukzhfIskm1CrGqqRM8kGBwGEzaXbCkQHhb3gd7/jk=',1,'2024-12-04 06:34:25','2024-12-17 12:51:02','unique12345',100022,'2024-12-04 06:34:25','2024-12-17 12:51:02','hadesDbSvcUser@172.19.0.1',0),('XuMMC84n5nwIN5rwKNAALOMr2YAyyoWKWOw+xr0oh4RdVitfI+Fcgu2C+noYobni',1,'2025-04-15 10:38:35','2025-06-11 07:45:43','unique12345',100112,'2025-04-15 10:38:35','2025-06-04 07:45:43','hadesDbSvcUser@172.19.0.1',0),('XVaKfYdeuU6TwgE1ihw5/pNU2g4VGfss0XQNij6QcQ9dVitfI+Fcgu2C+noYobni',1,'2025-04-07 02:37:52','2025-04-07 17:40:01','unique12345',100526,'2025-04-07 14:37:52','2025-04-07 17:40:01','hadesDbSvcUser@172.19.0.1',0),('XWBtbzyq6qhABbQXSHhz0U5zR2WagUvZ4KxiiJatVmFdVitfI+Fcgu2C+noYobni',1,'2024-05-30 06:40:05','2024-06-06 13:45:08','unique12345',100043,'2024-05-30 06:40:05','2024-05-30 13:45:08','hadesDbSvcUser@172.19.0.1',0),('xXaCZWtwQGG2ITAeSIhigblPv01yZL1ubehmsiWULutdVitfI+Fcgu2C+noYobni',1,'2025-01-02 11:58:23','2025-01-09 13:33:40','unique12345',100320,'2025-01-02 11:58:23','2025-01-02 13:33:40','hadesDbSvcUser@172.19.0.1',0),('XyROkHl8qBArA/DM880fcbvI41pY9EfDTI2QViB7cwxdVitfI+Fcgu2C+noYobni',1,'2024-12-09 06:48:48','2024-12-16 06:52:52','unique12345',100037,'2024-12-09 06:48:48','2024-12-09 06:52:52','hadesDbSvcUser@172.19.0.1',0),('Y+fiD3srxiMdL22BJDI+sjL0+q9dop5r0TfVQ8vuKWddVitfI+Fcgu2C+noYobni',1,'2024-05-22 11:13:28','2024-05-23 07:28:49','unique12345',100026,'2024-05-22 11:13:28','2024-05-23 07:28:49','hadesDbSvcUser@172.19.0.1',0),('Y+slkyqS+a8HrR4aAEXaZ5lvnUQwEqjsGgu5OG+LdZNdVitfI+Fcgu2C+noYobni',1,'2025-01-24 01:24:31','2025-01-31 14:13:58','unique12345',100043,'2025-01-24 13:24:31','2025-01-24 14:13:58','hadesDbSvcUser@172.19.0.1',0),('Y0dJkZDQMUdoW0aw7Y643Tz0o+/bQkq+zJ+PrExp0gZdVitfI+Fcgu2C+noYobni',1,'2025-03-31 05:45:32','2025-04-07 05:48:00','unique12345',100311,'2025-03-31 05:45:32','2025-03-31 05:48:00','hadesDbSvcUser@172.19.0.1',0),('Y0Nn2xb0ASDlIxuTk7YJOcJQwDMH1f608BKayW5Q4xRdVitfI+Fcgu2C+noYobni',1,'2024-10-02 07:32:19','2024-10-14 01:16:02','unique12345',100063,'2024-10-02 07:32:19','2024-10-07 01:16:02','hadesDbSvcUser@172.19.0.1',0),('YaLbYskY7oMNfXsDVaHhMTI+9kz1uWwP/JStufduopxdVitfI+Fcgu2C+noYobni',1,'2024-05-27 04:33:21','2024-05-27 05:46:18','unique12345',100033,'2024-05-27 04:33:21','2024-05-27 05:46:18','hadesDbSvcUser@172.19.0.1',0),('yCcCIVOlUufFvZw2YfKO/03/1FDk7TWst7fehFhlscddVitfI+Fcgu2C+noYobni',1,'2024-11-08 05:41:53','2024-11-15 11:58:00','unique12345',100329,'2024-11-08 05:41:53','2024-11-08 11:58:00','hadesDbSvcUser@172.19.0.1',0),('yD0P6UgvrQdCTtrUeWo4jQrORAqYu8fkUlA3AMRkkVQ=',1,'2025-03-26 11:53:08','2025-03-27 09:31:21','unique12345',100111,'2025-03-26 11:53:08','2025-03-27 09:31:21','hadesDbSvcUser@172.19.0.1',0),('yDUUEA8WM9Sq3/RL7tOxlhwsC4rovCMb0u+oExk8x9JdVitfI+Fcgu2C+noYobni',1,'2025-05-16 10:26:52','2025-05-23 10:27:25','unique12345',100111,'2025-05-16 10:26:52','2025-05-16 10:27:25','hadesDbSvcUser@172.19.0.1',0),('yE8RQEuX9XDdn0VVZU3Fwqn3phDGKUzyl8fM/C1VgopdVitfI+Fcgu2C+noYobni',1,'2025-08-07 08:06:18','2025-08-14 08:06:29','unique12345',100111,'2025-08-07 08:06:18','2025-08-07 08:06:29','hadesDbSvcUser@172.19.0.1',0),('YEohDyC0g8jcr6NZCTsVLEgRuvkrBfg5APxabv9doU5dVitfI+Fcgu2C+noYobni',1,'2025-04-22 10:20:49','2025-04-30 13:00:30','unique12345',100005,'2025-04-22 10:20:49','2025-04-23 13:00:30','hadesDbSvcUser@172.19.0.1',0),('Ykzu/hjXAqwjH3TQXmQLQTPjYsZnCjj4g26BaCBPlc1dVitfI+Fcgu2C+noYobni',1,'2024-08-29 03:03:38','2024-08-29 15:17:07','unique12345',100015,'2024-08-29 15:03:38','2024-08-29 15:17:07','hadesDbSvcUser@172.19.0.1',0),('YMcadpypz9v7RLXgCz83tN9VLMF1AV7dhxNGH2XVSeo=',1,'2024-06-13 06:24:23','2024-06-14 00:36:19','unique12345',100039,'2024-06-13 06:24:23','2024-06-14 00:36:19','hadesDbSvcUser@172.19.0.1',0),('ymr0HRXF4WR8zgMtKP56Sl1VJ7mNhxlJTT691ne67LxdVitfI+Fcgu2C+noYobni',1,'2024-10-16 05:04:06','2024-10-30 06:37:12','unique12345',100063,'2024-10-16 05:04:06','2024-10-23 06:37:12','hadesDbSvcUser@172.19.0.1',0),('YnbqVYFR2CRXXvWo5qDyU7kwD0XSThehQLXSZH27S9hdVitfI+Fcgu2C+noYobni',1,'2024-11-12 08:35:17','2024-11-19 08:36:08','unique12345',100320,'2024-11-12 08:35:17','2024-11-12 08:36:08','hadesDbSvcUser@172.19.0.1',0),('YQb/Bwx7r33S3oZng0WBgVCW0xatTSNAcMDmMHwDCH1dVitfI+Fcgu2C+noYobni',1,'2025-02-20 06:41:02','2025-02-27 12:48:38','unique12345',100539,'2025-02-20 06:41:02','2025-02-20 12:48:38','hadesDbSvcUser@172.19.0.1',0),('YqE5RgRbIBd3R/jtIQ8q2TDX6SStr7Iis209mh99Z0ZdVitfI+Fcgu2C+noYobni',1,'2024-11-12 04:14:28','2024-12-19 05:49:25','unique12345',100335,'2024-11-12 04:14:28','2024-12-12 05:49:25','hadesDbSvcUser@172.19.0.1',0),('YsNfMb5KcVQR9BwYY2LodURHhGHDBftWqd2//qS8dpFdVitfI+Fcgu2C+noYobni',1,'2024-07-25 07:24:51','2024-07-26 08:59:50','unique12345',100015,'2024-07-25 07:24:51','2024-07-26 08:59:50','hadesDbSvcUser@172.19.0.1',0),('yuQqOgi06IPBU/3vHnTeGW4siUr37TBpgtYFHQmG7StdVitfI+Fcgu2C+noYobni',1,'2025-03-24 10:49:41','2025-03-31 09:53:15','unique12345',100294,'2025-03-24 10:49:41','2025-03-31 09:53:15','hadesDbSvcUser@172.19.0.1',0),('yVmxehnVlyDeSa5e0lezJDgNXYuAoXUQO8MqlAjx1JVdVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:40:11','2024-05-24 10:40:14','unique12345',100022,'2024-05-24 10:40:11','2024-05-24 10:40:14','hadesDbSvcUser@172.19.0.1',0),('YwFqusfOKKaXxgDXQxa5158Y2qn1IxqO2ujW7onIAQxdVitfI+Fcgu2C+noYobni',1,'2024-11-21 04:50:12','2024-11-28 04:52:07','unique12345',100037,'2024-11-21 04:50:12','2024-11-21 04:52:07','hadesDbSvcUser@172.19.0.1',0),('ywHstrXIHZC6IpM0V9eXhsbZ+FrwkCBOoVwstRUzPzk=',1,'2024-07-11 11:32:28','2024-07-12 07:27:48','unique12345',100015,'2024-07-11 11:32:28','2024-07-12 07:27:48','hadesDbSvcUser@172.19.0.1',0),('YWmHX6ISQ/qxvY//ULy/Br9w460CM8g6g11vCi7a+NhdVitfI+Fcgu2C+noYobni',1,'2024-06-11 01:49:55','2024-06-14 04:06:49','unique12345',100014,'2024-06-11 13:49:55','2024-06-14 04:06:49','hadesDbSvcUser@172.19.0.1',0),('Ywn+GzMNFEgdUx6qwgly9khYQCPRrnJd3+gC5LPrH81dVitfI+Fcgu2C+noYobni',1,'2024-10-30 09:20:14','2024-11-06 09:21:08','unique12345',100114,'2024-10-30 09:20:14','2024-10-30 09:21:08','hadesDbSvcUser@172.19.0.1',0),('yXaC0+rk4CZ7g4l/onBjdMHo+/ZzhBuOwWNhw/1ec7JdVitfI+Fcgu2C+noYobni',1,'2024-06-17 08:40:11','2024-06-17 08:52:39','unique12345',100092,'2024-06-17 08:40:11','2024-06-17 08:52:39','hadesDbSvcUser@172.19.0.1',0),('yxcHRUgJW9geybMd0FcRrvzcOe6WKyKuG2wz0Ew7wHNdVitfI+Fcgu2C+noYobni',1,'2024-11-26 00:16:22','2024-12-02 09:05:44','unique12345',100015,'2024-11-26 12:16:22','2024-12-02 09:05:44','hadesDbSvcUser@172.19.0.1',0),('Z/G2MsvYNiuACEHTgvgC2wQn/mDcTx/Zy5xapNQsmFFdVitfI+Fcgu2C+noYobni',1,'2024-10-28 07:23:08','2024-11-04 06:46:11','unique12345',100015,'2024-10-28 07:23:08','2024-11-04 06:46:11','hadesDbSvcUser@172.19.0.1',0),('Z2yzo1N5/2pRQE4LS31v7kSdcxyocWO+DicRLMa+dRRdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:09:00','2024-06-12 09:00:54','unique12345',100058,'2024-06-11 05:09:00','2024-06-12 09:00:54','hadesDbSvcUser@172.19.0.1',0),('z3D18jEdx8fyCRg9DPkM3t1RHKv+iJPxljukFSxF8wpdVitfI+Fcgu2C+noYobni',1,'2024-06-17 05:19:26','2024-06-17 06:00:50','unique12345',100070,'2024-06-17 05:19:26','2024-06-17 06:00:50','hadesDbSvcUser@172.19.0.1',0),('z5ujjCc/rVqrPnm8eBFuGO6NfbyXqcNdkJ9xPn9uY0xdVitfI+Fcgu2C+noYobni',1,'2024-07-11 08:58:19','2024-07-11 09:03:12','unique12345',100106,'2024-07-11 08:58:19','2024-07-11 09:03:12','hadesDbSvcUser@172.19.0.1',0),('z9ylqFpAJ4xWBKMnXix5sF9thHTphZqlAszlaor/ILhdVitfI+Fcgu2C+noYobni',1,'2024-11-18 04:01:29','2024-11-25 06:56:13','unique12345',100362,'2024-11-18 04:01:29','2024-11-18 06:56:13','hadesDbSvcUser@172.19.0.1',0),('zBehrOHjE21gVwwRbcXCEyoncMRFEBHczgMgNg5GBbJdVitfI+Fcgu2C+noYobni',1,'2024-08-02 07:08:57','2024-08-09 07:09:00','unique12345',100100,'2024-08-02 07:08:57','2024-08-02 07:09:00','hadesDbSvcUser@172.19.0.1',0),('ZbsmuB5G0UlMH0ZnkxK8oVubpdIbgzdogLfBkSYXxyldVitfI+Fcgu2C+noYobni',1,'2024-07-11 07:13:59','2024-07-11 08:12:20','unique12345',100015,'2024-07-11 07:13:59','2024-07-11 08:12:20','hadesDbSvcUser@172.19.0.1',0),('zfPvY9xFy1H8YsHUhm08Scf91Zzo5Rl6eei5RedCP9ZdVitfI+Fcgu2C+noYobni',1,'2024-07-22 09:21:11','2024-07-29 09:23:59','unique12345',100110,'2024-07-22 09:21:11','2024-07-22 09:23:59','hadesDbSvcUser@172.19.0.1',0),('zg6Qs+Sy5bEwaDLaLHVYNogkO3raV9ZahxMf9gCuICpdVitfI+Fcgu2C+noYobni',1,'2024-10-24 00:45:15','2024-12-11 14:37:30','unique12345',100111,'2024-10-24 12:45:15','2024-12-11 14:37:30','hadesDbSvcUser@172.19.0.1',0),('Zgt6WJfhBug6UcV1kFwLWYF4CmOK0F4G2XrWhnwvPWddVitfI+Fcgu2C+noYobni',1,'2024-05-28 05:49:51','2024-05-28 05:49:57','unique12345',100039,'2024-05-28 05:49:51','2024-05-28 05:49:57','hadesDbSvcUser@172.19.0.1',0),('ZGXfpKJ2ZGx7J/NZEnNGradwmr/JvBcB/MpJCn/ONwY=',1,'2024-12-03 05:17:19','2024-12-04 10:41:30','unique12345',100015,'2024-12-03 05:17:19','2024-12-04 10:41:30','hadesDbSvcUser@172.19.0.1',0),('zHOWqF3oILnmMWMTjfHXus3OhFFTt6sBYkKAcBn1y+NdVitfI+Fcgu2C+noYobni',1,'2024-08-27 02:29:14','2024-09-03 02:29:49','unique12345',100032,'2024-08-27 02:29:14','2024-08-27 02:29:49','hadesDbSvcUser@172.19.0.1',0),('ZIP6rtO8mQgzxAzNL8vl/PGe4nxYinr6nzB2aKZwaahdVitfI+Fcgu2C+noYobni',1,'2024-07-11 11:03:14','2024-07-11 11:12:06','unique12345',100106,'2024-07-11 11:03:14','2024-07-11 11:12:06','hadesDbSvcUser@172.19.0.1',0),('zJowMhfSJ4r6H+ZClEm1DP+U7L1kVgL792Uo0wlln+RdVitfI+Fcgu2C+noYobni',1,'2024-10-22 04:53:17','2024-11-05 06:48:55','unique12345',100006,'2024-10-22 04:53:17','2024-10-29 06:48:55','hadesDbSvcUser@172.19.0.1',0),('zkXSttemNZ2AKqhDfmXIcrdas1MDOhEQHW6NLbbLg2E=',1,'2024-10-28 09:28:33','2024-11-04 10:17:00','unique12345',100043,'2024-10-28 09:28:33','2024-10-28 10:17:00','hadesDbSvcUser@172.19.0.1',0),('Zo7nqA7tZdt+dkHUliKG7EncoO0T64wu+VUbeG/V35ddVitfI+Fcgu2C+noYobni',1,'2024-09-30 08:31:31','2024-09-30 09:53:46','unique12345',100015,'2024-09-30 08:31:31','2024-09-30 09:53:46','hadesDbSvcUser@172.19.0.1',0),('ZOK4Fz6qjSWcwSQf4EngDw7DVC1pU+RI4upNGTVQtcRdVitfI+Fcgu2C+noYobni',1,'2025-01-17 11:41:46','2025-01-24 11:42:52','unique12345',100006,'2025-01-17 11:41:46','2025-01-17 11:42:52','hadesDbSvcUser@172.19.0.1',0),('zoQpO7mqD5ZqL6IC/MPYjoyLkppM2ZFLfaCJSnF9SyRdVitfI+Fcgu2C+noYobni',1,'2024-12-18 03:58:29','2024-12-18 09:54:20','unique12345',100015,'2024-12-18 03:58:29','2024-12-18 09:54:20','hadesDbSvcUser@172.19.0.1',0),('ZOyWwzrTGKh+d+CdLJ0KNpta+s5D04RtSUiL1mcavN5dVitfI+Fcgu2C+noYobni',1,'2024-08-08 09:34:19','2024-08-08 09:35:47','unique12345',100052,'2024-08-08 09:34:19','2024-08-08 09:35:47','hadesDbSvcUser@172.19.0.1',0),('ZPEReKT+QHuTcPLFxZep6h8ujukhcUacPIkduwYSoiVdVitfI+Fcgu2C+noYobni',1,'2024-09-10 04:46:43','2024-09-10 06:20:49','unique12345',100111,'2024-09-10 04:46:43','2024-09-10 06:20:49','hadesDbSvcUser@172.19.0.1',0),('zPGJ76hzwwApnQCn9bkXDM8UgOVYh2YQdVOLixdOoXBdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:23:09','2024-06-18 05:23:09','unique12345',100068,'2024-06-11 05:23:09','2024-06-11 05:23:09','hadesDbSvcUser@172.19.0.1',0),('ZpjylV69+ft86O/GV/Rn9rugHKVcAe6fxsdeHYx+YgxdVitfI+Fcgu2C+noYobni',1,'2024-05-24 11:13:00','2024-07-01 07:08:19','unique12345',100022,'2024-05-24 11:13:00','2024-07-01 07:08:19','hadesDbSvcUser@172.19.0.1',0),('zQYjiDfKTP4xOnhEgaYFPIur/KetMWBk7d9x2tPCUI9dVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:41:02','2024-05-24 10:41:15','unique12345',100022,'2024-05-24 10:41:02','2024-05-24 10:41:15','hadesDbSvcUser@172.19.0.1',0),('zSxiD8N74I51EyCFMQCyH/FLg72oOijRGolcfj/jLURdVitfI+Fcgu2C+noYobni',1,'2024-05-24 10:54:41','2024-05-24 10:58:46','unique12345',100022,'2024-05-24 10:54:41','2024-05-24 10:58:46','hadesDbSvcUser@172.19.0.1',0),('ZVEct0XJYvQ589f4S1EoNuu65Dc/LEou+5T6ppuTd0pdVitfI+Fcgu2C+noYobni',1,'2025-02-24 01:11:22','2025-03-12 12:42:33','unique12345',100112,'2025-02-24 13:11:22','2025-03-12 12:42:33','hadesDbSvcUser@172.19.0.1',0),('zXQaHygj2777CTuKwamJJ9yP2423Yxumm3id7OLRjnldVitfI+Fcgu2C+noYobni',1,'2025-01-27 06:18:22','2025-02-05 12:57:13','unique12345',100017,'2025-01-27 06:18:22','2025-01-29 12:57:13','hadesDbSvcUser@172.19.0.1',0),('ZxyopRrU+ItG3zDjVocD1UFfJtYf5dgBs/qfCD9DknFdVitfI+Fcgu2C+noYobni',1,'2024-06-12 09:01:26','2024-06-12 09:01:44','unique12345',100070,'2024-06-12 09:01:26','2024-06-12 09:01:44','hadesDbSvcUser@172.19.0.1',0),('zyhozYHy7LM4AKuA9/JHpjw9OLMUoFpV+iF0HB8JotZdVitfI+Fcgu2C+noYobni',1,'2024-06-11 05:41:11','2024-06-11 05:41:17','unique12345',100070,'2024-06-11 05:41:11','2024-06-11 05:41:17','hadesDbSvcUser@172.19.0.1',0); +/*!40000 ALTER TABLE `encrypted_tokens` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_encrypted_tokens_insert_trigger BEFORE INSERT ON hades_db.encrypted_tokens +FOR EACH ROW +BEGIN + SET NEW.creation_date = NOW(); + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_encrypted_tokens_update_trigger BEFORE UPDATE ON hades_db.encrypted_tokens +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `entity` +-- + +DROP TABLE IF EXISTS `entity`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `entity` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `entity_id` int(11) NOT NULL, + `entity_type_id` int(11) NOT NULL, + `entity_name` varchar(250) NOT NULL, + `entity_alias` varchar(250) NOT NULL, + `status_type_id` int(11) NOT NULL, + `agency_id` int(11) NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `entity_type_id` (`entity_type_id`,`entity_id`) +) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `entity` +-- + +LOCK TABLES `entity` WRITE; +/*!40000 ALTER TABLE `entity` DISABLE KEYS */; +INSERT INTO `entity` VALUES (1,1,2,'Tving Staging','Tving Staging',1,1,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(2,1,1,'1_Tving Test Admin','Tving Test Admin',1,1,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(7,6,1,'tving-staging-seller test_do_not_use','test_do_not_use',1,1,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(8,7,1,'tving-staging-seller WPSjSway6zxfVZWR','JooyoungAdAccount',1,1,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(9,8,1,'tving-staging-seller F3ic8Ba9cma45x2J','Daehueng',1,1,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(10,9,1,'tving-staging-seller Vxb3oZyytPEwcjkZ','퓨쳐스트림 네트워크 – JooyoungAdAccount-2',1,1,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(11,10,1,'tving-staging-seller YtOiSjTEpsJWfqqM','에코마케팅 – Hanna',1,1,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(12,11,1,'tving-staging-seller test_hm','Test HM',1,1,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(13,12,1,'tving-staging-seller TEST_SELLER_ID','Test Seller',1,1,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(14,2,2,'Tving QA','Tving QA',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(15,13,1,'2_Tving QA Admin','Tving QA Admin',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(16,14,1,'tving-qa-seller WPSjSway6zxfVZWR','[Do Not Use]JooyoungAdAccount (WPSjSway6zxfVZWR)',2,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(17,15,1,'tving-qa-seller TEST_SELLER_ID','[Do Not Use]Test Seller (TEST_SELLER_ID)',2,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(18,16,1,'tving-qa-seller NshES5G5u00Zl1xn','[Do Not Use]Test_Sangtak (NshES5G5u00Zl1xn)',2,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(19,17,1,'tving-qa-seller doGNTwiW2MgUKlkz','TVING Internal Test (doGNTwiW2MgUKlkz)',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(20,18,1,'tving-qa-seller MxTCFpKSK3Xoa6Ko','Moloco Internal Test (MxTCFpKSK3Xoa6Ko)',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(21,19,1,'tving-qa-seller qOjHBIXIOWpvKkgq','DMC미디어 (qOjHBIXIOWpvKkgq)',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(22,20,1,'tving-qa-seller zw458QHAqFkQDV4f','인크로스 (zw458QHAqFkQDV4f)',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(23,21,1,'tving-qa-seller gIDPPSEomGlEaZyy','CJ ENM (gIDPPSEomGlEaZyy)',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(24,22,1,'tving-qa-seller neuXz1JGmBV2EU0M','Tving_Inhouse (neuXz1JGmBV2EU0M)',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(25,23,1,'tving-qa-seller IJ3E5byMo8XmiQO8','삼성전자_수정 테스트 (IJ3E5byMo8XmiQO8)',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(26,24,1,'tving-qa-seller C8PyyFevOyDK03bS','제일기획 (C8PyyFevOyDK03bS)',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(27,25,1,'tving-qa-seller a4jim0PxlEeizrJN','펑타이 (a4jim0PxlEeizrJN)',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(28,26,1,'tving-qa-seller lPNjSDdMJfDOITKg','메조미디어 (lPNjSDdMJfDOITKg)',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(29,27,1,'tving-qa-seller hyTMsxI0irU0cAdT','TVING_QA_Practice (hyTMsxI0irU0cAdT)',1,2,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(30,28,1,'tving-staging-seller Vxb3oZyytPEwcjkX','퓨쳐스트림 네트워크 – JooyoungAdAccount-3',1,1,0,NULL,'2024-06-24 09:09:58','root@172.19.0.1'),(31,29,1,'tving-staging-seller cbT7wcJjR6e6Ide5','AD_ACCOUNT_DEV',1,1,0,NULL,'2024-10-14 08:55:08','hadesDbSvcUser@172.19.0.1'),(32,30,1,'tving-staging-seller 35496053','Testing Seller Monitor',1,1,0,NULL,NULL,NULL),(33,31,1,'tving-staging-seller TEST_SELLER_ID2','Test Seller 2',1,1,0,NULL,NULL,NULL),(34,32,1,'tving-staging-seller TEST_SELLER_ID3','Test Seller 2 Testing',1,1,0,NULL,NULL,NULL),(35,33,1,'tving-staging-seller TEST_SELLER_ID4','Test Seller 4 Testing',1,1,0,NULL,NULL,NULL),(36,34,1,'tving-staging-seller TEST_SELLER_ID5','Test Seller 5 Testing',1,1,0,NULL,NULL,NULL),(37,35,1,'tving-staging-seller TEST_SELLER_ID6','Test Seller 6 Testing',1,1,0,NULL,NULL,NULL),(38,36,1,'tving-staging-seller TEST_SELLER_ID7','Test Seller 7 Testing',1,1,0,NULL,NULL,NULL),(39,37,1,'tving-staging-seller TEST_SELLER_ID8','Test Seller 8 Testing (TEST_SELLER_ID8)',1,1,0,NULL,NULL,NULL),(40,38,1,'tving-staging-seller TEST_SELLER_ID9','Test Seller 9 Testing (TEST_SELLER_ID9)',1,1,0,NULL,NULL,NULL),(41,39,1,'tving-staging-seller TEST_SELLER_ID10','Test Seller 10 (TEST_SELLER_ID10)',1,1,0,NULL,NULL,NULL),(42,40,1,'tving-staging-seller TEST_SELLER_ID11','Test Seller 11',1,1,0,NULL,NULL,NULL),(43,41,1,'tving-staging-seller API_TEST1','API Test Seller updated',1,1,0,NULL,'2024-10-11 15:18:29','hadesDbSvcUser@172.19.0.1'),(44,42,1,'tving-staging-seller API_TEST2','API Test Seller 2 Testing (API_TEST2)',1,1,0,NULL,NULL,NULL),(45,43,1,'tving-staging-seller API_TEST3','API Test Seller 3 Testing',1,1,0,NULL,NULL,NULL),(46,44,1,'tving-staging-seller API_TEST4','API Test Seller 4 Testing (API_TEST4)',1,1,0,NULL,NULL,NULL),(47,45,1,'tving-staging-seller API_TEST5','API Test Seller 5 Testing (API_TEST5)',1,1,0,NULL,NULL,NULL),(48,46,1,'tving-staging-seller Sh2UqYwhmyTKEAQk','(주)골든블루_메조미디어 (Sh2UqYwhmyTKEAQk)',1,1,1,NULL,NULL,NULL),(49,47,1,'tving-staging-seller dafs_dagda','testing ad account 1 (dafs_dagda)',1,1,0,NULL,NULL,NULL),(50,48,1,'tving-staging-seller igaiagicd2','testing seller 1346 (igaiagicd2)',1,1,0,NULL,NULL,NULL),(51,49,1,'tving-staging-seller igaiagicd','testing seller 134 (igaiagicd)',1,1,0,NULL,NULL,NULL),(52,50,1,'tving-staging-seller igaiagicd21','testing seller 1346 (igaiagicd21)',1,1,0,NULL,NULL,NULL),(53,51,1,'tving-staging-seller test_seller_korean','조가빈 (test_seller_korean)',1,1,0,NULL,NULL,NULL),(54,52,1,'tving-staging-seller TEST_SELLER_DOWN','Test Seller Down (TEST_SELLER_DOWN)',1,1,0,NULL,NULL,NULL),(55,3,2,'rms-staging2-marketplace','rms-staging2-marketplace',1,3,0,NULL,NULL,NULL); +/*!40000 ALTER TABLE `entity` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `entity_maps` +-- + +DROP TABLE IF EXISTS `entity_maps`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `entity_maps` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `entity_id` int(11) NOT NULL, + `entity_type_id` int(11) NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `parent_id` int(11) DEFAULT NULL, + `parent_entity_type_id` int(11) NOT NULL, + `agency_id` int(11) NOT NULL, + `parent_depth` int(11) NOT NULL, + `absolute_depth` int(11) NOT NULL, + `root_mcc_id` int(11) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `entity_type_id` (`entity_type_id`,`entity_id`,`parent_entity_type_id`,`parent_id`,`root_mcc_id`), + KEY `em_index_parent_entity` (`parent_entity_type_id`,`parent_id`) +) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `entity_maps` +-- + +LOCK TABLES `entity_maps` WRITE; +/*!40000 ALTER TABLE `entity_maps` DISABLE KEYS */; +INSERT INTO `entity_maps` VALUES (1,1,2,0,1,2,1,0,0,-1,NULL,NULL,NULL),(2,1,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(3,1,1,0,1,1,1,0,1,-1,NULL,NULL,NULL),(12,6,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(13,6,1,0,6,1,1,0,1,-1,NULL,NULL,NULL),(14,7,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(15,7,1,0,7,1,1,0,1,-1,NULL,NULL,NULL),(16,8,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(17,8,1,0,8,1,1,0,1,-1,NULL,NULL,NULL),(18,9,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(19,9,1,0,9,1,1,0,1,-1,NULL,NULL,NULL),(20,10,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(21,10,1,0,10,1,1,0,1,-1,NULL,NULL,NULL),(22,11,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(23,11,1,0,11,1,1,0,1,-1,NULL,NULL,NULL),(24,12,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(25,12,1,0,12,1,1,0,1,-1,NULL,NULL,NULL),(26,2,2,0,2,2,2,0,0,-1,NULL,NULL,NULL),(27,13,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(28,13,1,0,13,1,2,0,1,-1,NULL,NULL,NULL),(29,14,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(30,14,1,0,14,1,2,0,1,-1,NULL,NULL,NULL),(31,15,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(32,15,1,0,15,1,2,0,1,-1,NULL,NULL,NULL),(33,16,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(34,16,1,0,16,1,2,0,1,-1,NULL,NULL,NULL),(35,17,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(36,17,1,0,17,1,2,0,1,-1,NULL,NULL,NULL),(37,18,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(38,18,1,0,18,1,2,0,1,-1,NULL,NULL,NULL),(39,19,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(40,19,1,0,19,1,2,0,1,-1,NULL,NULL,NULL),(41,20,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(42,20,1,0,20,1,2,0,1,-1,NULL,NULL,NULL),(43,21,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(44,21,1,0,21,1,2,0,1,-1,NULL,NULL,NULL),(45,22,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(46,22,1,0,22,1,2,0,1,-1,NULL,NULL,NULL),(47,23,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(48,23,1,0,23,1,2,0,1,-1,NULL,NULL,NULL),(49,24,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(50,24,1,0,24,1,2,0,1,-1,NULL,NULL,NULL),(51,25,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(52,25,1,0,25,1,2,0,1,-1,NULL,NULL,NULL),(53,26,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(54,26,1,0,26,1,2,0,1,-1,NULL,NULL,NULL),(55,27,1,0,2,2,2,1,1,-1,NULL,NULL,NULL),(56,27,1,0,27,1,2,0,1,-1,NULL,NULL,NULL),(57,28,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(58,28,1,0,28,1,1,0,1,-1,NULL,NULL,NULL),(59,29,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(60,29,1,0,29,1,1,0,1,-1,NULL,NULL,NULL),(61,30,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(62,30,1,0,30,1,1,0,1,-1,NULL,NULL,NULL),(63,31,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(64,31,1,0,31,1,1,0,1,-1,NULL,NULL,NULL),(65,32,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(66,32,1,0,32,1,1,0,1,-1,NULL,NULL,NULL),(67,33,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(68,33,1,0,33,1,1,0,1,-1,NULL,NULL,NULL),(69,34,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(70,34,1,0,34,1,1,0,1,-1,NULL,NULL,NULL),(71,35,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(72,35,1,0,35,1,1,0,1,-1,NULL,NULL,NULL),(73,36,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(74,36,1,0,36,1,1,0,1,-1,NULL,NULL,NULL),(75,37,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(76,37,1,0,37,1,1,0,1,-1,NULL,NULL,NULL),(77,38,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(78,38,1,0,38,1,1,0,1,-1,NULL,NULL,NULL),(79,39,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(80,39,1,0,39,1,1,0,1,-1,NULL,NULL,NULL),(81,40,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(82,40,1,0,40,1,1,0,1,-1,NULL,NULL,NULL),(83,41,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(84,41,1,0,41,1,1,0,1,-1,NULL,NULL,NULL),(85,42,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(86,42,1,0,42,1,1,0,1,-1,NULL,NULL,NULL),(87,43,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(88,43,1,0,43,1,1,0,1,-1,NULL,NULL,NULL),(89,44,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(90,44,1,0,44,1,1,0,1,-1,NULL,NULL,NULL),(91,45,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(92,45,1,0,45,1,1,0,1,-1,NULL,NULL,NULL),(93,46,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(94,46,1,0,46,1,1,0,1,-1,NULL,NULL,NULL),(95,47,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(96,47,1,0,47,1,1,0,1,-1,NULL,NULL,NULL),(97,48,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(98,48,1,0,48,1,1,0,1,-1,NULL,NULL,NULL),(99,49,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(100,49,1,0,49,1,1,0,1,-1,NULL,NULL,NULL),(101,50,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(102,50,1,0,50,1,1,0,1,-1,NULL,NULL,NULL),(103,51,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(104,51,1,0,51,1,1,0,1,-1,NULL,NULL,NULL),(105,52,1,0,1,2,1,1,1,-1,NULL,NULL,NULL),(106,52,1,0,52,1,1,0,1,-1,NULL,NULL,NULL),(107,3,2,0,3,2,3,0,0,-1,NULL,NULL,NULL); +/*!40000 ALTER TABLE `entity_maps` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `entity_metadata` +-- + +DROP TABLE IF EXISTS `entity_metadata`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `entity_metadata` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `agency_id` int(11) NOT NULL, + `entity_id` int(11) NOT NULL, + `entity_type_id` int(11) NOT NULL, + `marketplace_client_id` int(11) DEFAULT NULL, + `business_definition` varchar(64) DEFAULT NULL, + `url` varchar(2048) DEFAULT NULL, + `merchant_id` varchar(256) DEFAULT NULL, + `merchant_type` varchar(64) DEFAULT NULL, + `city` varchar(128) DEFAULT NULL, + `state` varchar(128) DEFAULT NULL, + `country` varchar(128) DEFAULT NULL, + `currency` varchar(4) DEFAULT NULL, + `timezone` varchar(32) DEFAULT NULL, + `approval_status` varchar(64) DEFAULT NULL, + `business_status` varchar(64) DEFAULT NULL, + `geolocation` varchar(32) DEFAULT NULL, + `business_legal_info` varchar(1024) DEFAULT NULL, + `custom_label_1` varchar(512) DEFAULT NULL, + `custom_label_2` varchar(512) DEFAULT NULL, + `custom_label_3` varchar(512) DEFAULT NULL, + `custom_label_4` varchar(512) DEFAULT NULL, + `custom_label_5` varchar(512) DEFAULT NULL, + `custom_label_6` varchar(512) DEFAULT NULL, + `custom_label_7` varchar(512) DEFAULT NULL, + `custom_label_8` varchar(512) DEFAULT NULL, + `custom_label_9` varchar(512) DEFAULT NULL, + `custom_label_10` varchar(512) DEFAULT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) DEFAULT NULL, + `store_type` varchar(50) DEFAULT 'custom', + `created_by_user_id` int(11) NOT NULL, + `updated_by_user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `entity_type_id` (`entity_type_id`,`entity_id`) +) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `entity_metadata` +-- + +LOCK TABLES `entity_metadata` WRITE; +/*!40000 ALTER TABLE `entity_metadata` DISABLE KEYS */; +INSERT INTO `entity_metadata` VALUES (1,1,1,2,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'marketplace',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-06-24 09:09:58','root@172.19.0.1','custom',4661,4661),(2,1,1,1,NULL,NULL,'https://www.tvingtest.com',NULL,NULL,NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving',4661,4661),(7,1,6,1,1,NULL,'https://tving-staging-test_do_not_use.com/','test_do_not_use','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'test_do_not_use','9876543210','test_do_not_use@tving-staging.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-staging',4661,4661),(8,1,7,1,1,NULL,'https://tving-staging-WPSjSway6zxfVZWR.com/','WPSjSway6zxfVZWR','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'JooyoungAdAccount','9876543210','wpsjsway6zxfvzwr@tving-staging.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-staging',4661,4661),(9,1,8,1,1,NULL,'https://tving-staging-F3ic8Ba9cma45x2J.com/','F3ic8Ba9cma45x2J','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Daehueng','9876543210','f3ic8ba9cma45x2j@tving-staging.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-staging',4661,4661),(10,1,9,1,1,NULL,'https://tving-staging-Vxb3oZyytPEwcjkZ.com/','Vxb3oZyytPEwcjkZ','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'퓨쳐스트림 네트워크 – JooyoungAdAccount-2','9876543210','vxb3ozyytpewcjkz@tving-staging.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-staging',4661,4661),(11,1,10,1,1,NULL,'https://tving-staging-YtOiSjTEpsJWfqqM.com/','YtOiSjTEpsJWfqqM','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'에코마케팅 – Hanna','9876543210','ytoisjtepsjwfqqm@tving-staging.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-staging',4661,4661),(12,1,11,1,1,NULL,'https://tving-staging-test_hm.com/','test_hm','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test HM','9876543210','test_hm@tving-staging.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-staging',4661,4661),(13,1,12,1,1,NULL,'https://tving-staging-TEST_SELLER_ID.com/','TEST_SELLER_ID','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller','9876543210','test_seller_id@tving-staging.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-staging',4661,4661),(14,2,2,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'marketplace',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-06-24 09:09:58','root@172.19.0.1','custom',4661,4661),(15,2,13,1,NULL,NULL,'https://www.tvingqa.com',NULL,NULL,NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving',4661,4661),(16,2,14,1,13,NULL,'https://tving-qa-WPSjSway6zxfVZWR.com/','WPSjSway6zxfVZWR','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'JooyoungAdAccount','9876543210','wpsjsway6zxfvzwr@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(17,2,15,1,13,NULL,'https://tving-qa-TEST_SELLER_ID.com/','TEST_SELLER_ID','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller','9876543210','test_seller_id@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(18,2,16,1,13,NULL,'https://tving-qa-NshES5G5u00Zl1xn.com/','NshES5G5u00Zl1xn','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test_Sangtak','9876543210','nshes5g5u00zl1xn@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(19,2,17,1,13,NULL,'https://tving-qa-doGNTwiW2MgUKlkz.com/','doGNTwiW2MgUKlkz','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TVING Internal Test','9876543210','dogntwiw2mguklkz@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(20,2,18,1,13,NULL,'https://tving-qa-MxTCFpKSK3Xoa6Ko.com/','MxTCFpKSK3Xoa6Ko','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Moloco Internal Test','9876543210','mxtcfpksk3xoa6ko@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(21,2,19,1,13,NULL,'https://tving-qa-qOjHBIXIOWpvKkgq.com/','qOjHBIXIOWpvKkgq','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DMC미디어','9876543210','qojhbixiowpvkkgq@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(22,2,20,1,13,NULL,'https://tving-qa-zw458QHAqFkQDV4f.com/','zw458QHAqFkQDV4f','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'인크로스','9876543210','zw458qhaqfkqdv4f@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(23,2,21,1,13,NULL,'https://tving-qa-gIDPPSEomGlEaZyy.com/','gIDPPSEomGlEaZyy','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CJ ENM','9876543210','gidppseomgleazyy@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(24,2,22,1,13,NULL,'https://tving-qa-neuXz1JGmBV2EU0M.com/','neuXz1JGmBV2EU0M','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tving_Inhouse','9876543210','neuxz1jgmbv2eu0m@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(25,2,23,1,13,NULL,'https://tving-qa-IJ3E5byMo8XmiQO8.com/','IJ3E5byMo8XmiQO8','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'삼성전자_수정 테스트','9876543210','ij3e5bymo8xmiqo8@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(26,2,24,1,13,NULL,'https://tving-qa-C8PyyFevOyDK03bS.com/','C8PyyFevOyDK03bS','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'제일기획','9876543210','c8pyyfevoydk03bs@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(27,2,25,1,13,NULL,'https://tving-qa-a4jim0PxlEeizrJN.com/','a4jim0PxlEeizrJN','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'펑타이','9876543210','a4jim0pxleeizrjn@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(28,2,26,1,13,NULL,'https://tving-qa-lPNjSDdMJfDOITKg.com/','lPNjSDdMJfDOITKg','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'메조미디어','9876543210','lpnjsddmjfdoitkg@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(29,2,27,1,13,NULL,'https://tving-qa-hyTMsxI0irU0cAdT.com/','hyTMsxI0irU0cAdT','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'TVING_QA_Practice','9876543210','hytmsxi0iru0cadt@tving-qa.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-qa',4661,4661),(30,1,28,1,1,NULL,'https://tving-staging-Vxb3oZyytPEwcjkX.com/','Vxb3oZyytPEwcjkX','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'퓨쳐스트림 네트워크 – JooyoungAdAccount-3','9876543210','vxb3ozyytpewcjkx@tving-staging.com',NULL,'2024-06-24 09:09:58','root@172.19.0.1','tving-staging',4661,4661),(31,1,29,1,1,NULL,'https://tving-staging-cbT7wcJjR6e6Ide5.com/','cbT7wcJjR6e6Ide5','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'AD_ACCOUNT_DEV','9876543210','cbt7wcjjr6e6ide5@tving-staging.com',NULL,'2024-10-14 08:55:08','hadesDbSvcUser@172.19.0.1','tving-staging',4661,100015),(32,1,30,1,1,NULL,'https://tving-staging-35496053.com/','35496053','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Testing Seller Monitor','9876543210','35496053@tving-staging.com','2024-07-12 07:08:50','2024-07-12 07:08:50','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(33,1,31,1,1,NULL,'https://tving-staging-TEST_SELLER_ID2.com/','TEST_SELLER_ID2','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller 2','9876543210','test_seller_id2@tving-staging.com','2024-07-30 10:43:26','2024-07-30 10:43:26','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(34,1,32,1,1,NULL,'https://tving-staging-TEST_SELLER_ID3.com/','TEST_SELLER_ID3','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller 2 Testing','9876543210','test_seller_id3@tving-staging.com','2024-07-30 13:20:20','2024-07-30 13:20:20','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(35,1,33,1,1,NULL,'https://tving-staging-TEST_SELLER_ID4.com/','TEST_SELLER_ID4','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller 4 Testing','9876543210','test_seller_id4@tving-staging.com','2024-07-30 13:28:08','2024-07-30 13:28:08','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(36,1,34,1,1,NULL,'https://tving-staging-TEST_SELLER_ID5.com/','TEST_SELLER_ID5','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller 5 Testing','9876543210','test_seller_id5@tving-staging.com','2024-07-30 13:35:57','2024-07-30 13:35:57','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(37,1,35,1,1,NULL,'https://tving-staging-TEST_SELLER_ID6.com/','TEST_SELLER_ID6','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller 6 Testing','9876543210','test_seller_id6@tving-staging.com','2024-07-30 13:55:43','2024-07-30 13:55:43','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(38,1,36,1,1,NULL,'https://tving-staging-TEST_SELLER_ID7.com/','TEST_SELLER_ID7','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller 7 Testing','9876543210','test_seller_id7@tving-staging.com','2024-07-31 06:05:57','2024-07-31 06:05:57','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(39,1,37,1,1,NULL,'https://tving-staging-TEST_SELLER_ID8.com/','TEST_SELLER_ID8','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller 8 Testing','9876543210','test_seller_id8@tving-staging.com','2024-07-31 06:09:38','2024-07-31 06:09:38','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(40,1,38,1,1,NULL,'https://tving-staging-TEST_SELLER_ID9.com/','TEST_SELLER_ID9','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller 9 Testing','9876543210','test_seller_id9@tving-staging.com','2024-07-31 06:13:25','2024-07-31 06:13:25','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(41,1,39,1,1,NULL,'https://tving-staging-TEST_SELLER_ID10.com/','TEST_SELLER_ID10','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller 10','9876543210','test_seller_id10@tving-staging.com','2024-07-31 07:22:37','2024-07-31 07:22:37','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(42,1,40,1,1,NULL,'https://tving-staging-TEST_SELLER_ID11.com/','TEST_SELLER_ID11','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller 11','9876543210','test_seller_id11@tving-staging.com','2024-07-31 07:24:37','2024-07-31 07:24:37','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(43,1,41,1,1,NULL,'https://tving-staging-API_TEST1.com/','API_TEST1','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'API Test Seller 1 Testing','9876543210','api_test1@tving-staging.com','2024-07-31 09:12:24','2024-10-11 15:18:29','hadesDbSvcUser@172.19.0.1','tving-staging',4661,100022),(44,1,42,1,1,NULL,'https://tving-staging-API_TEST2.com/','API_TEST2','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'API Test Seller 2 Testing','9876543210','api_test2@tving-staging.com','2024-08-07 08:11:01','2024-08-07 08:11:01','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(45,1,43,1,1,NULL,'https://tving-staging-API_TEST3.com/','API_TEST3','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'API Test Seller 3 Testing','9876543210','api_test3@tving-staging.com','2024-08-07 08:16:34','2024-08-07 08:16:34','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(46,1,44,1,1,NULL,'https://tving-staging-API_TEST4.com/','API_TEST4','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'API Test Seller 4 Testing','9876543210','api_test4@tving-staging.com','2024-08-12 05:47:15','2024-08-12 05:47:15','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(47,1,45,1,1,NULL,'https://tving-staging-API_TEST5.com/','API_TEST5','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'API Test Seller 5 Testing','9876543210','api_test5@tving-staging.com','2024-08-12 05:51:18','2024-08-12 05:51:18','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(48,1,46,1,1,NULL,'https://tving-staging-Sh2UqYwhmyTKEAQk.com/','Sh2UqYwhmyTKEAQk','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'(주)골든블루_메조미디어','9876543210','sh2uqywhmytkeaqk@tving-staging.com','2024-10-14 09:15:00','2024-10-14 09:15:00','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(49,1,47,1,1,NULL,'https://tving-staging-dafs_dagda.com/','dafs_dagda','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'testing ad account 1','9876543210','dafs_dagda@tving-staging.com','2024-10-14 09:59:04','2024-10-14 09:59:04','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(50,1,48,1,1,NULL,'https://tving-staging-igaiagicd2.com/','igaiagicd2','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'testing seller 1346','9876543210','igaiagicd2@tving-staging.com','2024-10-14 10:00:04','2024-10-14 10:00:04','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(51,1,49,1,1,NULL,'https://tving-staging-igaiagicd.com/','igaiagicd','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'testing seller 134','9876543210','igaiagicd@tving-staging.com','2024-10-14 10:03:04','2024-10-14 10:03:04','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(52,1,50,1,1,NULL,'https://tving-staging-igaiagicd21.com/','igaiagicd21','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'testing seller 1346','9876543210','igaiagicd21@tving-staging.com','2024-10-14 12:21:13','2024-10-14 12:21:13','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(53,1,51,1,1,NULL,'https://tving-staging-test_seller_korean.com/','test_seller_korean','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'조가빈','9876543210','test_seller_korean@tving-staging.com','2024-10-28 05:37:24','2024-10-28 05:37:24','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(54,1,52,1,1,NULL,'https://tving-staging-TEST_SELLER_DOWN.com/','TEST_SELLER_DOWN','seller',NULL,NULL,NULL,'KRW','Asia/Seoul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test Seller Down','9876543210','test_seller_down@tving-staging.com','2024-12-09 05:29:57','2024-12-09 05:29:57','hadesDbSvcUser@172.19.0.1','tving-staging',4661,4661),(55,3,3,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'marketplace',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-04-30 09:19:10','2025-04-30 09:19:10','hades_staging2_onboarding_rw@152.52.38.14','custom',4661,4661); +/*!40000 ALTER TABLE `entity_metadata` ENABLE KEYS */; +UNLOCK TABLES; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = utf8 */ ; +/*!50003 SET character_set_results = utf8 */ ; +/*!50003 SET collation_connection = utf8_general_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_entity_metadata_insert_entity_update_trigger BEFORE INSERT ON entity_metadata +FOR EACH ROW +BEGIN + SET NEW.last_updated_by=USER(); + SET NEW.last_update=NOW(); + SET NEW.creation_date=NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = utf8 */ ; +/*!50003 SET character_set_results = utf8 */ ; +/*!50003 SET collation_connection = utf8_general_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_entity_metadata_update_trigger BEFORE UPDATE ON entity_metadata +FOR EACH ROW +BEGIN + SET NEW.last_updated_by=USER(); + SET NEW.last_update=NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_entity_metadata_update_entity_update_trigger AFTER UPDATE ON entity_metadata +FOR EACH ROW +BEGIN + UPDATE entity SET last_updated_by=USER(), last_update = NOW() WHERE entity_id = NEW.entity_id AND entity_type_id = NEW.entity_type_id AND agency_id = NEW.agency_id; +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `entity_types` +-- + +DROP TABLE IF EXISTS `entity_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `entity_types` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(50) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `entity_types` +-- + +LOCK TABLES `entity_types` WRITE; +/*!40000 ALTER TABLE `entity_types` DISABLE KEYS */; +INSERT INTO `entity_types` VALUES (1,'CLIENT','2024-05-20 09:01:58','2024-05-20 09:01:58','root@172.19.0.1'),(2,'AGENCY','2024-05-20 09:01:58','2024-05-20 09:01:58','root@172.19.0.1'),(3,'MCC','2024-05-20 09:01:58','2024-05-20 09:01:58','root@172.19.0.1'); +/*!40000 ALTER TABLE `entity_types` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_entity_types_insert_trigger BEFORE INSERT ON entity_types +FOR EACH ROW BEGIN + SET NEW.creation_date=NOW(); + SET NEW.last_updated_by=USER(); + SET NEW.last_update=NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_entity_types_update_trigger BEFORE UPDATE ON entity_types +FOR EACH ROW +BEGIN + SET NEW.last_updated_by=USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `mccs_id_generator` +-- + +DROP TABLE IF EXISTS `mccs_id_generator`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `mccs_id_generator` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(250) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mccs_id_generator` +-- + +LOCK TABLES `mccs_id_generator` WRITE; +/*!40000 ALTER TABLE `mccs_id_generator` DISABLE KEYS */; +/*!40000 ALTER TABLE `mccs_id_generator` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_mccs_id_generator_insert_trigger BEFORE INSERT ON mccs_id_generator +FOR EACH ROW BEGIN + SET NEW.creation_date=NOW(); + SET NEW.last_updated_by=USER(); + SET NEW.last_update=NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_mccs_id_generator_update_trigger BEFORE UPDATE ON mccs_id_generator +FOR EACH ROW +BEGIN + SET NEW.last_updated_by=USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `organization_types` +-- + +DROP TABLE IF EXISTS `organization_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `organization_types` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` char(25) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `organization_types` +-- + +LOCK TABLES `organization_types` WRITE; +/*!40000 ALTER TABLE `organization_types` DISABLE KEYS */; +INSERT INTO `organization_types` VALUES (1,'CLIENT','2024-05-20 08:57:13','2024-05-20 08:57:13','root@172.19.0.1',0),(2,'AGENCY','2024-05-20 08:57:13','2024-05-20 08:57:13','root@172.19.0.1',0); +/*!40000 ALTER TABLE `organization_types` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_organization_types_insert_trigger BEFORE INSERT ON hades_db.organization_types +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_organization_types_update_trigger BEFORE UPDATE ON hades_db.organization_types +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `otp` +-- + +DROP TABLE IF EXISTS `otp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `otp` ( + `expiration_datetime` datetime NOT NULL, + `user_id` int(11) NOT NULL, + `id` int(11) NOT NULL AUTO_INCREMENT, + `user_otp` varchar(10) NOT NULL, + `issue_datetime` datetime NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `uc_otp` (`expiration_datetime`,`user_id`,`user_otp`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `otp` +-- + +LOCK TABLES `otp` WRITE; +/*!40000 ALTER TABLE `otp` DISABLE KEYS */; +/*!40000 ALTER TABLE `otp` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_otp_insert_trigger BEFORE INSERT ON hades_db.otp +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_otp_update_trigger BEFORE UPDATE ON hades_db.otp +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `schema_info` +-- + +DROP TABLE IF EXISTS `schema_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `schema_info` ( + `db_name` varchar(50) NOT NULL, + `version` varchar(50) NOT NULL, + `filename` varchar(250) DEFAULT NULL, + `run_date` datetime DEFAULT NULL, + `status` varchar(50) DEFAULT NULL, + PRIMARY KEY (`db_name`,`version`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `schema_info` +-- + +LOCK TABLES `schema_info` WRITE; +/*!40000 ALTER TABLE `schema_info` DISABLE KEYS */; +INSERT INTO `schema_info` VALUES ('hades_db','000','/usr/local/onlinesales/hades/sql/000_create_db.sql','2024-05-20 08:39:16','success'),('hades_db','001','/usr/local/onlinesales/hades/sql/001_init.sql','2024-05-20 08:39:17','success'),('hades_db','002','/usr/local/onlinesales/hades/sql/002_triggers.sql','2024-05-20 08:57:07','success'),('hades_db','003','/usr/local/onlinesales/hades/sql/003_app_context.sql','2024-05-20 08:57:08','success'),('hades_db','004','/usr/local/onlinesales/hades/sql/004_acl_tables.sql','2024-05-20 08:57:09','success'),('hades_db','005','/usr/local/onlinesales/hades/sql/005_acl_triggers.sql','2024-05-20 08:57:12','success'),('hades_db','006','/usr/local/onlinesales/hades/sql/006_acl_stored_procs.sql','2024-05-20 08:57:12','success'),('hades_db','007','/usr/local/onlinesales/hades/sql/007_alter_tables.sql','2024-05-20 08:57:13','success'),('hades_db','008','/usr/local/onlinesales/hades/sql/008_populate_status_types.sql','2024-05-20 08:57:13','success'),('hades_db','009','/usr/local/onlinesales/hades/sql/009_drop_app_id_from_tokens.sql','2024-05-20 08:57:13','success'),('hades_db','010','/usr/local/onlinesales/hades/sql/010_alter_users_table.sql','2024-05-20 08:57:13','success'),('hades_db','011','/usr/local/onlinesales/hades/sql/011_otp.sql','2024-05-20 08:57:14','success'),('hades_db','012','/usr/local/onlinesales/hades/sql/012_sms_log.sql','2024-05-20 08:57:14','success'),('hades_db','013','/usr/local/onlinesales/hades/sql/013_create_teams_table.sql','2024-05-20 08:57:14','success'),('hades_db','014','/usr/local/onlinesales/hades/sql/014_populate_teams_table.sql','2024-05-20 08:57:14','success'),('hades_db','015','/usr/local/onlinesales/hades/sql/015_alter_apps_table.sql','2024-05-20 08:57:15','success'),('hades_db','016','/usr/local/onlinesales/hades/sql/016_add_modify_agencies_after_insert_trigger.sql','2024-05-20 08:57:15','success'),('hades_db','017','/usr/local/onlinesales/hades/sql/017_create_table_auth_channels.sql','2024-05-20 08:57:15','success'),('hades_db','018','/usr/local/onlinesales/hades/sql/018_insert_default_auth_channels.sql','2024-05-20 08:57:15','success'),('hades_db','019','/usr/local/onlinesales/hades/sql/019_alter_table_tokens.sql','2024-05-20 08:57:15','success'),('hades_db','020','/usr/local/onlinesales/hades/sql/020_create_table_auth_channel_keys.sql','2024-05-20 08:57:16','success'),('hades_db','021','/usr/local/onlinesales/hades/sql/021_create_table_user_details.sql','2024-05-20 08:57:16','success'),('hades_db','022','/usr/local/onlinesales/hades/sql/022_insert_default_auth_keys.sql','2024-05-20 08:57:16','success'),('hades_db','023','/usr/local/onlinesales/hades/sql/023_alter_users_table.sql','2024-05-20 08:57:17','success'),('hades_db','024','/usr/local/onlinesales/hades/sql/024_alter_tokens_table.sql','2024-05-20 08:57:17','success'),('hades_db','025','/usr/local/onlinesales/hades/sql/025_alter_app_context_table.sql','2024-05-20 08:57:17','success'),('hades_db','026','/usr/local/onlinesales/hades/sql/026_alter_apps_table.sql','2024-05-20 08:57:17','success'),('hades_db','027','/usr/local/onlinesales/hades/sql/027_create_table_email_id_metadata.sql','2024-05-20 08:57:17','success'),('hades_db','028','/usr/local/onlinesales/hades/sql/028_alter_table_agencies_add_marketplace_client_id.sql','2024-05-20 08:57:18','success'),('hades_db','029','/usr/local/onlinesales/hades/sql/029_alter_table_clients.sql','2024-05-20 08:57:18','success'),('hades_db','030','/usr/local/onlinesales/hades/sql/030_create_table_auth_provider_types.sql','2024-05-20 08:57:19','success'),('hades_db','031','/usr/local/onlinesales/hades/sql/031_create_table_auth_provider_metadata.sql','2024-05-20 08:57:19','success'),('hades_db','032','/usr/local/onlinesales/hades/sql/032_create_table_users_v2.sql','2024-05-20 08:57:19','success'),('hades_db','033','/usr/local/onlinesales/hades/sql/033_insert_auth_provider_value_table_values.sql','2024-05-20 08:57:19','success'),('hades_db','034','/usr/local/onlinesales/hades/sql/034_insert_encrypted_app_contexts.sql','2024-05-20 08:59:40','success'),('hades_db','035','/usr/local/onlinesales/hades/sql/035_insert_encrypted_tokens.sql','2024-05-20 09:01:56','success'),('hades_db','036','/usr/local/onlinesales/hades/sql/036_recreate_table_agencies.sql','2024-05-20 09:01:57','success'),('hades_db','037','/usr/local/onlinesales/hades/sql/037_recreate_table_clients.sql','2024-05-20 09:01:57','success'),('hades_db','038','/usr/local/onlinesales/hades/sql/038_create_table_mccs.sql','2024-05-20 09:01:57','success'),('hades_db','039','/usr/local/onlinesales/hades/sql/039_create_table_entity_types.sql','2024-05-20 09:01:58','success'),('hades_db','040','/usr/local/onlinesales/hades/sql/040_create_table_entity.sql','2024-05-20 09:01:58','success'),('hades_db','041','/usr/local/onlinesales/hades/sql/041_create_table_entity_metadata.sql','2024-05-20 09:01:58','success'),('hades_db','042','/usr/local/onlinesales/hades/sql/042_create_table_entity_maps.sql','2024-05-20 09:01:59','success'),('hades_db','043','/usr/local/onlinesales/hades/sql/043_create_table_user_entity_mappings.sql','2024-05-20 09:01:59','success'),('hades_db','044','/usr/local/onlinesales/hades/sql/044_alter_access_roles_table.sql','2024-05-20 09:02:00','success'),('hades_db','045','/usr/local/onlinesales/hades/sql/045_create_table_access_permissions.sql','2024-05-20 09:02:00','success'),('hades_db','046','/usr/local/onlinesales/hades/sql/046_create_table_access_role_permission_mappings.sql','2024-05-20 09:02:01','success'),('hades_db','047','/usr/local/onlinesales/hades/sql/047_create_table_access_role_tag_mappings.sql','2024-05-20 09:02:01','success'),('hades_db','050','/usr/local/onlinesales/hades/sql/050_create_table_users_v3.sql','2024-05-20 09:02:01','success'),('hades_db','051','/usr/local/onlinesales/hades/sql/051_create_table_auth_provider_metadata_v2.sql','2024-05-20 09:02:01','success'),('hades_db','052','/usr/local/onlinesales/hades/sql/052_alter_table_entity_metadata.sql','2024-05-20 09:02:02','success'),('hades_db','053','/usr/local/onlinesales/hades/sql/053_alter_table_entity_metadata_add_user_columns.sql','2024-05-20 09:02:02','success'),('hades_db','054','/usr/local/onlinesales/hades/sql/054_alter_access_roles_name_column.sql','2024-05-20 09:02:02','success'),('hades_db','055','/usr/local/onlinesales/hades/sql/055_add_trigger_to_update_entity_when_entity_metadata_updated.sql','2024-05-20 09:02:02','success'); +/*!40000 ALTER TABLE `schema_info` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sms_log` +-- + +DROP TABLE IF EXISTS `sms_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sms_log` ( + `sms_datetime` datetime NOT NULL, + `user_id` int(11) NOT NULL, + `id` int(11) NOT NULL AUTO_INCREMENT, + `otp` varchar(10) NOT NULL, + `log` text NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `uc_otp` (`sms_datetime`,`user_id`,`otp`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sms_log` +-- + +LOCK TABLES `sms_log` WRITE; +/*!40000 ALTER TABLE `sms_log` DISABLE KEYS */; +/*!40000 ALTER TABLE `sms_log` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_sms_log_insert_trigger BEFORE INSERT ON hades_db.sms_log +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_sms_log_update_trigger BEFORE UPDATE ON hades_db.sms_log +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `status_types` +-- + +DROP TABLE IF EXISTS `status_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `status_types` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` char(25) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `status_types` +-- + +LOCK TABLES `status_types` WRITE; +/*!40000 ALTER TABLE `status_types` DISABLE KEYS */; +INSERT INTO `status_types` VALUES (1,'ACTIVE','2024-05-20 08:57:13','2024-05-20 08:57:13','root@172.19.0.1',0),(2,'INACTIVE','2024-05-20 08:57:13','2024-05-20 08:57:13','root@172.19.0.1',0),(3,'BLOCKED','2024-05-20 08:57:13','2024-05-20 08:57:13','root@172.19.0.1',0); +/*!40000 ALTER TABLE `status_types` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_status_types_insert_trigger BEFORE INSERT ON hades_db.status_types +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_status_types_update_trigger BEFORE UPDATE ON hades_db.status_types +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `teams` +-- + +DROP TABLE IF EXISTS `teams`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `teams` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` char(100) NOT NULL, + `status_type_id` int(11) NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` char(100) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `teams` +-- + +LOCK TABLES `teams` WRITE; +/*!40000 ALTER TABLE `teams` DISABLE KEYS */; +INSERT INTO `teams` VALUES (1,'analytics',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(2,'branding',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(4,'core-reporting',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(5,'growth-apps',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(6,'heisenberg',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(7,'hercules',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(8,'infra',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(9,'iris',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(10,'iris-reporting',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(11,'lcs-analytics',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(12,'marketing',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(13,'merchandise',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(14,'platform',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(15,'revx',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(16,'scorpii',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(17,'smb-dev',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(18,'sokrati-dev',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(19,'tafStore',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(20,'tracking',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'),(21,'unified-tracking',1,0,'2024-05-20 08:57:14','2024-05-20 08:57:14','root@172.19.0.1'); +/*!40000 ALTER TABLE `teams` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_teams_insert_trigger BEFORE INSERT ON hades_db.teams +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_teams_update_trigger BEFORE UPDATE ON hades_db.teams +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `tokens` +-- + +DROP TABLE IF EXISTS `tokens`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `tokens` ( + `token` varchar(100) NOT NULL, + `auth_channel_id` int(11) DEFAULT '1', + `issue_datetime` datetime NOT NULL, + `expiration_datetime` datetime NOT NULL, + `ubid` varchar(50) CHARACTER SET latin1 NOT NULL, + `user_id` int(11) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`token`), + KEY `tokens_idx1` (`ubid`,`expiration_datetime`), + KEY `tokens_idx2` (`token`,`expiration_datetime`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tokens` +-- + +LOCK TABLES `tokens` WRITE; +/*!40000 ALTER TABLE `tokens` DISABLE KEYS */; +/*!40000 ALTER TABLE `tokens` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_tokens_insert_trigger BEFORE INSERT ON hades_db.tokens +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_tokens_update_trigger BEFORE UPDATE ON hades_db.tokens +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `user_agency_mappings` +-- + +DROP TABLE IF EXISTS `user_agency_mappings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `user_agency_mappings` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `user_id` int(11) NOT NULL, + `agency_id` int(11) NOT NULL, + `access_role_id` int(11) NOT NULL, + `status_type_id` int(11) NOT NULL, + `end_user_id` int(11) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `user_id` (`user_id`,`agency_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_agency_mappings` +-- + +LOCK TABLES `user_agency_mappings` WRITE; +/*!40000 ALTER TABLE `user_agency_mappings` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_agency_mappings` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_user_agency_mappings_insert_trigger BEFORE INSERT ON hades_db.user_agency_mappings +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_user_agency_mappings_update_trigger BEFORE UPDATE ON hades_db.user_agency_mappings +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `user_client_mappings` +-- + +DROP TABLE IF EXISTS `user_client_mappings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `user_client_mappings` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `user_id` int(11) NOT NULL, + `client_id` int(11) NOT NULL, + `access_role_id` int(11) NOT NULL, + `status_type_id` int(11) NOT NULL, + `end_user_id` int(11) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `user_id` (`user_id`,`client_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_client_mappings` +-- + +LOCK TABLES `user_client_mappings` WRITE; +/*!40000 ALTER TABLE `user_client_mappings` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_client_mappings` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_user_client_mappings_insert_trigger BEFORE INSERT ON hades_db.user_client_mappings +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_user_client_mappings_update_trigger BEFORE UPDATE ON hades_db.user_client_mappings +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `user_details` +-- + +DROP TABLE IF EXISTS `user_details`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `user_details` ( + `user_id` int(11) NOT NULL, + `key_id` int(11) NOT NULL, + `value` varchar(1024) NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) DEFAULT NULL, + PRIMARY KEY (`user_id`,`key_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_details` +-- + +LOCK TABLES `user_details` WRITE; +/*!40000 ALTER TABLE `user_details` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_details` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_user_details_insert_trigger BEFORE INSERT ON hades_db.user_details +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_user_details_update_trigger BEFORE UPDATE ON hades_db.user_details +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `user_entity_mappings` +-- + +DROP TABLE IF EXISTS `user_entity_mappings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `user_entity_mappings` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `user_id` int(11) NOT NULL, + `entity_type_id` int(11) NOT NULL, + `entity_id` int(11) NOT NULL, + `agency_id` int(11) NOT NULL, + `access_role_id` int(11) NOT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `end_user_id` int(11) NOT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `user_id` (`user_id`,`entity_type_id`,`entity_id`,`access_role_id`), + KEY `uem_index_entity` (`entity_type_id`,`entity_id`), + KEY `uem_index_user_agency` (`user_id`,`agency_id`,`is_deleted`) +) ENGINE=InnoDB AUTO_INCREMENT=1209 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_entity_mappings` +-- + +LOCK TABLES `user_entity_mappings` WRITE; +/*!40000 ALTER TABLE `user_entity_mappings` DISABLE KEYS */; +INSERT INTO `user_entity_mappings` VALUES (8,4661,2,1,1,3,0,4661,NULL,NULL,NULL),(9,4662,2,1,1,3,0,4661,NULL,NULL,NULL),(13,100007,1,6,1,2,0,4661,NULL,NULL,NULL),(14,100008,1,7,1,2,0,4661,NULL,NULL,NULL),(15,100004,1,8,1,2,0,4661,NULL,NULL,NULL),(16,100009,1,9,1,2,0,4661,NULL,NULL,NULL),(17,100010,1,10,1,2,0,4661,NULL,NULL,NULL),(27,100018,1,11,1,2,0,4661,NULL,NULL,NULL),(32,6030,2,1,1,9,0,4661,NULL,NULL,NULL),(33,100001,2,1,1,9,0,4661,NULL,NULL,NULL),(34,100002,2,1,1,7,0,4661,NULL,NULL,NULL),(35,100003,2,1,1,8,0,4661,NULL,NULL,NULL),(36,100015,2,1,1,9,0,100005,NULL,NULL,NULL),(37,100005,2,1,1,9,0,100015,NULL,NULL,NULL),(38,100019,2,1,1,9,1,100015,NULL,NULL,NULL),(39,100006,2,1,1,9,0,100015,NULL,NULL,NULL),(40,100014,2,1,1,9,0,100015,NULL,NULL,NULL),(41,100020,1,12,1,2,0,4661,NULL,NULL,NULL),(42,100017,2,1,1,9,0,100015,NULL,NULL,NULL),(43,100021,2,1,1,9,1,100015,NULL,NULL,NULL),(44,100022,2,1,1,9,0,100023,NULL,NULL,NULL),(45,100023,2,1,1,9,0,6030,NULL,NULL,NULL),(46,100024,2,1,1,9,0,100005,NULL,NULL,NULL),(47,100025,2,1,1,9,1,6030,NULL,NULL,NULL),(48,100026,2,1,1,9,0,100005,NULL,NULL,NULL),(49,100027,2,1,1,9,0,100023,NULL,NULL,NULL),(50,4661,2,2,2,3,0,4661,NULL,NULL,NULL),(51,4662,2,2,2,3,0,4661,NULL,NULL,NULL),(52,6030,2,2,2,3,0,4661,NULL,NULL,NULL),(53,100028,2,2,2,15,0,6030,NULL,NULL,NULL),(54,100029,1,14,2,2,1,4661,NULL,NULL,NULL),(55,100021,2,2,2,15,0,100028,NULL,NULL,NULL),(56,100021,2,1,1,8,1,6030,NULL,NULL,NULL),(57,100021,2,1,1,7,0,100015,NULL,NULL,NULL),(58,100025,2,1,1,8,1,6030,NULL,NULL,NULL),(59,100025,2,1,1,7,0,6030,NULL,NULL,NULL),(60,100030,2,1,1,8,0,6030,NULL,NULL,NULL),(61,100031,2,1,1,7,1,100005,NULL,NULL,NULL),(62,100031,2,1,1,8,1,100005,NULL,NULL,NULL),(63,100005,2,2,2,15,0,4661,NULL,NULL,NULL),(64,100006,2,2,2,15,0,100005,NULL,NULL,NULL),(65,100032,2,2,2,15,0,100006,NULL,NULL,NULL),(66,100033,2,2,2,15,0,100032,NULL,NULL,NULL),(67,100034,2,2,2,15,0,100006,NULL,NULL,NULL),(68,100035,2,2,2,15,0,100006,NULL,NULL,NULL),(69,100036,2,2,2,15,0,100032,NULL,NULL,NULL),(70,100037,2,2,2,15,0,100032,NULL,NULL,NULL),(71,100033,2,2,2,14,1,100032,NULL,NULL,NULL),(72,100038,2,2,2,15,0,100005,NULL,NULL,NULL),(73,100039,1,14,2,18,1,4661,NULL,NULL,NULL),(74,100040,1,15,2,2,1,4661,NULL,NULL,NULL),(75,100041,1,16,2,2,1,4661,NULL,NULL,NULL),(76,100039,1,16,2,18,1,4661,NULL,NULL,NULL),(77,100023,2,2,2,15,0,100005,NULL,NULL,NULL),(78,100042,2,2,2,15,0,100023,NULL,NULL,NULL),(79,100043,2,2,2,15,0,100005,NULL,NULL,NULL),(80,100043,2,1,1,9,0,100005,NULL,NULL,NULL),(81,100044,2,1,1,9,1,100022,NULL,NULL,NULL),(82,100045,1,7,1,11,0,100005,NULL,NULL,NULL),(83,100046,1,7,1,11,1,100005,NULL,NULL,NULL),(84,100022,2,1,1,8,1,100021,NULL,NULL,NULL),(85,100022,2,1,1,7,1,100023,NULL,NULL,NULL),(86,100047,1,8,1,11,1,100022,NULL,NULL,NULL),(87,100047,1,8,1,12,1,100021,NULL,NULL,NULL),(88,100046,1,7,1,10,1,100005,NULL,NULL,NULL),(89,100023,1,7,1,12,0,100023,NULL,NULL,NULL),(90,100048,1,8,1,11,1,100026,NULL,NULL,NULL),(91,100048,2,1,1,9,1,100026,NULL,NULL,NULL),(92,100049,2,1,1,9,0,100026,NULL,NULL,NULL),(93,100050,1,7,1,11,0,100015,NULL,NULL,NULL),(94,100027,2,1,1,7,1,100023,NULL,NULL,NULL),(95,4661,2,1,1,7,0,100049,NULL,NULL,NULL),(96,100051,1,7,1,11,0,100049,NULL,NULL,NULL),(97,100052,2,1,1,9,0,100026,NULL,NULL,NULL),(98,100053,2,1,1,9,0,100022,NULL,NULL,NULL),(99,100054,2,1,1,9,0,100026,NULL,NULL,NULL),(100,100055,2,1,1,7,0,6030,NULL,NULL,NULL),(101,100015,2,2,2,15,0,100022,NULL,NULL,NULL),(102,100014,2,2,2,15,0,100015,NULL,NULL,NULL),(103,100056,2,2,2,15,0,100037,NULL,NULL,NULL),(104,100022,2,2,2,15,0,100015,NULL,NULL,NULL),(105,100025,2,2,2,15,0,100006,NULL,NULL,NULL),(106,100057,2,2,2,15,1,100037,NULL,NULL,NULL),(107,100058,2,2,2,15,0,100056,NULL,NULL,NULL),(108,100059,1,17,2,2,0,4661,NULL,NULL,NULL),(109,100060,1,18,2,2,0,4661,NULL,NULL,NULL),(110,100061,2,2,2,15,0,100056,NULL,NULL,NULL),(111,100062,2,2,2,15,0,100056,NULL,NULL,NULL),(112,100063,2,2,2,15,0,100056,NULL,NULL,NULL),(113,100064,2,2,2,15,0,100056,NULL,NULL,NULL),(114,100065,2,2,2,15,0,100056,NULL,NULL,NULL),(115,100066,1,19,2,2,0,4661,NULL,NULL,NULL),(116,100067,1,20,2,2,0,4661,NULL,NULL,NULL),(117,100068,1,21,2,2,0,4661,NULL,NULL,NULL),(118,100069,1,22,2,2,0,4661,NULL,NULL,NULL),(119,100070,1,21,2,18,1,100058,NULL,NULL,NULL),(120,100071,2,2,2,15,0,100064,NULL,NULL,NULL),(121,100072,2,2,2,15,0,100064,NULL,NULL,NULL),(122,100073,2,2,2,15,0,100056,NULL,NULL,NULL),(123,100039,1,18,2,18,0,100037,NULL,NULL,NULL),(124,100032,1,21,2,18,0,100032,NULL,NULL,NULL),(125,100074,1,23,2,2,0,4661,NULL,NULL,NULL),(126,100075,1,24,2,2,0,4661,NULL,NULL,NULL),(127,100076,1,25,2,2,0,4661,NULL,NULL,NULL),(128,100077,1,26,2,2,0,4661,NULL,NULL,NULL),(129,100078,2,1,1,7,1,100005,NULL,NULL,NULL),(130,100079,2,1,1,7,0,100005,NULL,NULL,NULL),(131,100080,1,21,2,16,0,100005,NULL,NULL,NULL),(132,100080,1,7,1,10,1,100005,NULL,NULL,NULL),(133,100080,1,7,1,11,0,100005,NULL,NULL,NULL),(134,100081,2,1,1,7,1,100017,NULL,NULL,NULL),(135,100082,1,21,2,18,0,100006,NULL,NULL,NULL),(136,100083,1,27,2,2,0,4661,NULL,NULL,NULL),(137,100039,1,27,2,18,0,100037,NULL,NULL,NULL),(138,100050,1,7,1,10,1,100015,NULL,NULL,NULL),(139,100084,1,7,1,11,0,100015,NULL,NULL,NULL),(140,100046,1,7,1,12,0,100005,NULL,NULL,NULL),(141,100085,1,18,2,18,1,100006,NULL,NULL,NULL),(142,100086,1,18,2,18,1,100006,NULL,NULL,NULL),(143,100087,1,18,2,18,0,100006,NULL,NULL,NULL),(144,100064,1,22,2,18,0,100064,NULL,NULL,NULL),(145,100061,1,22,2,18,0,100061,NULL,NULL,NULL),(146,100088,2,2,2,15,0,100037,NULL,NULL,NULL),(147,100062,1,22,2,17,0,100062,NULL,NULL,NULL),(148,100089,1,21,2,17,0,100062,NULL,NULL,NULL),(149,100090,1,21,2,16,1,100005,NULL,NULL,NULL),(150,100091,1,8,1,12,1,100022,NULL,NULL,NULL),(151,100092,1,8,1,12,1,100022,NULL,NULL,NULL),(152,100093,1,10,1,10,1,6030,NULL,NULL,NULL),(153,100093,1,10,1,12,0,6030,NULL,NULL,NULL),(154,100094,1,7,1,10,0,100005,NULL,NULL,NULL),(155,100095,1,18,2,18,0,6030,NULL,NULL,NULL),(156,100090,1,21,2,18,0,100005,NULL,NULL,NULL),(157,100096,1,21,2,16,0,100090,NULL,NULL,NULL),(158,100091,1,8,1,11,1,100022,NULL,NULL,NULL),(159,100097,1,28,1,2,0,4661,NULL,NULL,NULL),(160,100056,1,23,2,18,1,100058,NULL,NULL,NULL),(161,100098,1,23,2,18,0,100056,NULL,NULL,NULL),(162,100099,1,23,2,16,1,100061,NULL,NULL,NULL),(163,100070,1,21,2,16,1,100058,NULL,NULL,NULL),(164,100070,1,21,2,17,0,100058,NULL,NULL,NULL),(165,100099,1,23,2,17,1,100098,NULL,NULL,NULL),(166,100099,1,23,2,18,0,100098,NULL,NULL,NULL),(167,100074,1,23,2,16,0,100098,NULL,NULL,NULL),(168,100100,2,2,2,15,0,100032,NULL,NULL,NULL),(169,100100,1,21,2,18,0,100032,NULL,NULL,NULL),(170,100006,1,7,1,12,0,100006,NULL,NULL,NULL),(171,100101,2,2,2,13,1,100033,NULL,NULL,NULL),(172,100101,1,22,2,16,1,100033,NULL,NULL,NULL),(173,100102,2,2,2,15,1,100056,NULL,NULL,NULL),(174,100101,1,27,2,16,1,100033,NULL,NULL,NULL),(175,100103,1,29,1,2,0,4661,NULL,NULL,NULL),(176,100104,2,1,1,9,0,100023,NULL,NULL,NULL),(177,100105,2,2,2,15,1,100006,NULL,NULL,NULL),(178,100105,2,1,1,9,0,100027,NULL,NULL,NULL),(179,100105,2,2,2,13,0,100006,NULL,NULL,NULL),(180,100053,2,1,1,7,1,100022,NULL,NULL,NULL),(181,100044,2,1,1,8,1,100112,NULL,NULL,NULL),(182,100053,2,1,1,3,1,100022,NULL,NULL,NULL),(183,100104,2,2,2,15,0,100023,NULL,NULL,NULL),(184,100106,2,1,1,7,1,100015,NULL,NULL,NULL),(185,100107,1,30,1,2,0,4661,NULL,NULL,NULL),(186,100015,2,1,1,7,1,100005,NULL,NULL,NULL),(187,100015,1,29,1,10,1,100005,NULL,NULL,NULL),(188,100106,1,29,1,10,0,100015,NULL,NULL,NULL),(189,100079,2,1,1,9,1,100005,NULL,NULL,NULL),(190,100108,2,1,1,7,1,100022,NULL,NULL,NULL),(191,100106,1,29,1,11,1,100005,NULL,NULL,NULL),(192,100106,1,29,1,12,1,100005,NULL,NULL,NULL),(193,100015,1,29,1,12,1,100005,NULL,NULL,NULL),(194,100109,1,29,1,10,0,100006,NULL,NULL,NULL),(195,100106,2,1,1,8,0,100015,NULL,NULL,NULL),(196,100110,2,2,2,15,0,100015,NULL,NULL,NULL),(197,100088,1,21,2,16,0,100088,NULL,NULL,NULL),(198,100057,1,21,2,16,0,100088,NULL,NULL,NULL),(199,100111,2,1,1,9,0,100111,NULL,NULL,NULL),(200,100112,2,1,1,9,0,100112,NULL,NULL,NULL),(201,100113,2,1,1,9,1,100112,NULL,NULL,NULL),(202,100114,2,1,1,9,0,100015,NULL,NULL,NULL),(203,100115,1,31,1,2,0,4661,NULL,NULL,NULL),(204,100116,1,32,1,2,0,4661,NULL,NULL,NULL),(205,100117,1,33,1,2,0,4661,NULL,NULL,NULL),(206,100118,1,34,1,2,0,4661,NULL,NULL,NULL),(207,100119,1,35,1,2,0,4661,NULL,NULL,NULL),(208,100120,2,1,1,9,1,100111,NULL,NULL,NULL),(209,100121,2,1,1,9,1,100111,NULL,NULL,NULL),(210,100122,2,1,1,9,1,100111,NULL,NULL,NULL),(211,100123,2,1,1,7,1,100111,NULL,NULL,NULL),(212,100124,2,1,1,9,1,100111,NULL,NULL,NULL),(213,100125,2,1,1,9,1,100111,NULL,NULL,NULL),(214,100126,1,36,1,2,0,4661,NULL,NULL,NULL),(215,100127,1,37,1,2,0,4661,NULL,NULL,NULL),(216,100128,1,38,1,2,0,4661,NULL,NULL,NULL),(217,100129,2,1,1,9,1,100111,NULL,NULL,NULL),(218,100130,2,1,1,9,1,100111,NULL,NULL,NULL),(219,100131,1,39,1,2,0,4661,NULL,NULL,NULL),(220,100132,1,40,1,2,0,4661,NULL,NULL,NULL),(221,100133,1,41,1,2,0,4661,NULL,NULL,NULL),(222,100121,1,29,1,10,1,100111,NULL,NULL,NULL),(223,100134,1,42,1,2,0,4661,NULL,NULL,NULL),(224,100135,1,43,1,2,0,4661,NULL,NULL,NULL),(225,100136,2,1,1,9,0,100006,NULL,NULL,NULL),(226,100137,2,1,1,9,0,100006,NULL,NULL,NULL),(227,100138,2,1,1,9,0,100006,NULL,NULL,NULL),(228,100139,1,44,1,2,0,4661,NULL,NULL,NULL),(229,100140,1,45,1,2,0,4661,NULL,NULL,NULL),(230,100141,2,2,2,15,0,100032,NULL,NULL,NULL),(231,100142,2,1,1,8,1,100112,NULL,NULL,NULL),(232,100143,2,1,1,9,0,100112,NULL,NULL,NULL),(233,100144,2,1,1,8,1,100112,NULL,NULL,NULL),(234,100143,2,1,1,8,1,100112,NULL,NULL,NULL),(235,100145,2,1,1,9,1,100112,NULL,NULL,NULL),(236,100146,2,1,1,9,1,100112,NULL,NULL,NULL),(237,100147,2,1,1,9,1,100112,NULL,NULL,NULL),(238,100148,2,1,1,9,1,100112,NULL,NULL,NULL),(239,100149,2,1,1,9,1,100112,NULL,NULL,NULL),(240,100150,2,1,1,9,1,100112,NULL,NULL,NULL),(241,100151,2,1,1,9,1,100112,NULL,NULL,NULL),(242,100152,2,1,1,9,1,100112,NULL,NULL,NULL),(243,100153,2,1,1,9,1,100112,NULL,NULL,NULL),(244,100154,2,1,1,9,1,100112,NULL,NULL,NULL),(245,100155,2,1,1,9,1,100112,NULL,NULL,NULL),(246,100156,2,1,1,9,1,100112,NULL,NULL,NULL),(247,100157,2,1,1,9,1,100112,NULL,NULL,NULL),(248,100158,2,1,1,9,1,100112,NULL,NULL,NULL),(249,100159,2,1,1,9,1,100112,NULL,NULL,NULL),(250,100160,2,1,1,9,1,100112,NULL,NULL,NULL),(251,100161,2,1,1,9,1,100112,NULL,NULL,NULL),(252,100162,2,1,1,9,1,100112,NULL,NULL,NULL),(253,100163,2,1,1,9,1,100112,NULL,NULL,NULL),(254,100164,2,1,1,9,1,100112,NULL,NULL,NULL),(255,100165,2,1,1,9,1,100112,NULL,NULL,NULL),(256,100166,2,1,1,9,1,100112,NULL,NULL,NULL),(257,100111,2,1,1,7,0,100112,NULL,NULL,NULL),(258,100111,2,1,1,8,0,100112,NULL,NULL,NULL),(259,100167,2,1,1,9,1,100112,NULL,NULL,NULL),(260,100168,2,1,1,9,1,100112,NULL,NULL,NULL),(261,100169,2,1,1,9,1,100112,NULL,NULL,NULL),(262,100170,2,1,1,9,1,100112,NULL,NULL,NULL),(263,100171,2,1,1,9,1,100112,NULL,NULL,NULL),(264,100172,2,1,1,9,1,100112,NULL,NULL,NULL),(265,100172,2,1,1,8,1,100112,NULL,NULL,NULL),(266,100173,2,1,1,9,1,100112,NULL,NULL,NULL),(267,100174,2,1,1,9,1,100112,NULL,NULL,NULL),(268,100174,2,1,1,8,1,100112,NULL,NULL,NULL),(269,100175,2,1,1,9,1,100112,NULL,NULL,NULL),(270,100175,2,1,1,8,1,100112,NULL,NULL,NULL),(271,100176,2,1,1,9,1,100112,NULL,NULL,NULL),(272,100176,2,1,1,8,1,100112,NULL,NULL,NULL),(273,100177,2,1,1,9,1,100112,NULL,NULL,NULL),(274,100178,2,1,1,9,0,100005,NULL,NULL,NULL),(275,100179,2,1,1,9,1,100112,NULL,NULL,NULL),(276,100180,2,1,1,9,1,100112,NULL,NULL,NULL),(277,100181,2,1,1,9,1,100112,NULL,NULL,NULL),(278,100182,2,2,2,15,0,100032,NULL,NULL,NULL),(279,100183,2,1,1,9,1,100112,NULL,NULL,NULL),(280,100183,2,1,1,8,1,100112,NULL,NULL,NULL),(281,100184,1,29,1,10,1,100112,NULL,NULL,NULL),(282,100185,2,1,1,9,1,100112,NULL,NULL,NULL),(283,100186,2,1,1,9,1,100112,NULL,NULL,NULL),(284,100187,2,1,1,9,1,100112,NULL,NULL,NULL),(285,100188,2,1,1,9,1,100111,NULL,NULL,NULL),(286,100189,2,1,1,9,1,100111,NULL,NULL,NULL),(287,100189,2,1,1,8,1,100111,NULL,NULL,NULL),(288,100190,2,1,1,9,1,100111,NULL,NULL,NULL),(289,100190,2,1,1,8,1,100111,NULL,NULL,NULL),(290,100191,2,1,1,9,1,100111,NULL,NULL,NULL),(291,100191,2,1,1,8,1,100111,NULL,NULL,NULL),(292,100192,2,1,1,9,1,100111,NULL,NULL,NULL),(293,100193,2,1,1,9,1,100111,NULL,NULL,NULL),(294,100193,2,1,1,8,1,100111,NULL,NULL,NULL),(295,100194,2,1,1,9,1,100111,NULL,NULL,NULL),(296,100194,2,1,1,8,1,100111,NULL,NULL,NULL),(297,100195,2,1,1,9,1,100111,NULL,NULL,NULL),(298,100196,2,1,1,9,1,100111,NULL,NULL,NULL),(299,100197,2,1,1,9,1,100111,NULL,NULL,NULL),(300,100197,2,1,1,8,1,100111,NULL,NULL,NULL),(301,100198,2,1,1,9,1,100111,NULL,NULL,NULL),(302,100198,2,1,1,8,1,100111,NULL,NULL,NULL),(303,100199,2,1,1,9,1,100111,NULL,NULL,NULL),(304,100200,2,1,1,9,1,100112,NULL,NULL,NULL),(305,100201,2,1,1,9,1,100112,NULL,NULL,NULL),(306,100202,2,1,1,9,1,100112,NULL,NULL,NULL),(307,100203,2,1,1,9,1,100112,NULL,NULL,NULL),(308,100204,2,1,1,9,1,100112,NULL,NULL,NULL),(309,100205,2,1,1,9,1,100112,NULL,NULL,NULL),(310,100206,2,1,1,9,1,100112,NULL,NULL,NULL),(311,100207,2,1,1,7,1,100112,NULL,NULL,NULL),(312,100207,2,1,1,9,1,100112,NULL,NULL,NULL),(313,100208,2,1,1,9,1,100112,NULL,NULL,NULL),(314,100208,2,1,1,8,1,100112,NULL,NULL,NULL),(315,100209,2,1,1,9,1,100112,NULL,NULL,NULL),(316,100209,2,1,1,8,1,100112,NULL,NULL,NULL),(317,100210,2,1,1,9,1,100112,NULL,NULL,NULL),(318,100210,2,1,1,8,1,100112,NULL,NULL,NULL),(319,100211,2,1,1,9,1,100112,NULL,NULL,NULL),(320,100211,2,1,1,8,1,100112,NULL,NULL,NULL),(321,100212,2,1,1,9,1,100112,NULL,NULL,NULL),(322,100212,2,1,1,8,1,100112,NULL,NULL,NULL),(323,100213,2,2,2,15,0,100182,NULL,NULL,NULL),(324,100214,2,2,2,15,0,100182,NULL,NULL,NULL),(325,100215,2,2,2,15,0,100182,NULL,NULL,NULL),(326,100216,2,1,1,9,1,100112,NULL,NULL,NULL),(327,100216,2,1,1,8,1,100112,NULL,NULL,NULL),(328,100217,2,1,1,9,1,100112,NULL,NULL,NULL),(329,100217,2,1,1,8,1,100112,NULL,NULL,NULL),(330,100218,2,1,1,9,1,100112,NULL,NULL,NULL),(331,100218,2,1,1,8,1,100112,NULL,NULL,NULL),(332,100219,2,1,1,9,1,100112,NULL,NULL,NULL),(333,100219,2,1,1,8,1,100112,NULL,NULL,NULL),(334,100220,2,1,1,9,1,100112,NULL,NULL,NULL),(335,100220,2,1,1,8,0,100112,NULL,NULL,NULL),(336,100221,2,1,1,9,1,100112,NULL,NULL,NULL),(337,100221,2,1,1,8,1,100112,NULL,NULL,NULL),(338,100222,2,1,1,9,1,100112,NULL,NULL,NULL),(339,100222,2,1,1,8,1,100112,NULL,NULL,NULL),(340,100223,2,1,1,9,1,100112,NULL,NULL,NULL),(341,100223,2,1,1,8,1,100112,NULL,NULL,NULL),(342,100224,2,1,1,9,1,100112,NULL,NULL,NULL),(343,100224,2,1,1,8,1,100112,NULL,NULL,NULL),(344,100225,2,1,1,9,1,100112,NULL,NULL,NULL),(345,100225,2,1,1,8,1,100112,NULL,NULL,NULL),(346,100226,2,1,1,9,1,100112,NULL,NULL,NULL),(347,100226,2,1,1,8,1,100112,NULL,NULL,NULL),(348,100227,2,1,1,9,1,100112,NULL,NULL,NULL),(349,100227,2,1,1,8,1,100112,NULL,NULL,NULL),(350,100228,2,1,1,9,1,100112,NULL,NULL,NULL),(351,100228,2,1,1,8,1,100112,NULL,NULL,NULL),(352,100229,2,1,1,9,1,100112,NULL,NULL,NULL),(353,100229,2,1,1,8,1,100112,NULL,NULL,NULL),(354,100230,2,1,1,9,1,100112,NULL,NULL,NULL),(355,100230,2,1,1,8,1,100112,NULL,NULL,NULL),(356,100231,2,1,1,9,1,100112,NULL,NULL,NULL),(357,100231,2,1,1,8,1,100112,NULL,NULL,NULL),(358,100232,2,1,1,9,0,100112,NULL,NULL,NULL),(359,100232,2,1,1,8,1,100112,NULL,NULL,NULL),(360,100233,2,1,1,9,1,100112,NULL,NULL,NULL),(361,100233,2,1,1,8,1,100112,NULL,NULL,NULL),(362,100234,2,1,1,9,1,100112,NULL,NULL,NULL),(363,100234,2,1,1,8,1,100112,NULL,NULL,NULL),(364,100235,2,1,1,9,1,100112,NULL,NULL,NULL),(365,100235,2,1,1,8,1,100112,NULL,NULL,NULL),(366,100236,2,1,1,9,1,100112,NULL,NULL,NULL),(367,100236,2,1,1,8,1,100112,NULL,NULL,NULL),(368,100237,2,1,1,9,1,100112,NULL,NULL,NULL),(369,100237,2,1,1,8,1,100112,NULL,NULL,NULL),(370,100238,2,2,2,15,0,100037,NULL,NULL,NULL),(371,100239,2,1,1,9,1,100112,NULL,NULL,NULL),(372,100239,2,1,1,8,1,100112,NULL,NULL,NULL),(373,100240,2,1,1,9,1,100112,NULL,NULL,NULL),(374,100240,2,1,1,8,1,100112,NULL,NULL,NULL),(375,100241,2,1,1,9,1,100112,NULL,NULL,NULL),(376,100241,2,1,1,8,1,100112,NULL,NULL,NULL),(377,100242,2,1,1,9,1,100112,NULL,NULL,NULL),(378,100242,2,1,1,8,1,100112,NULL,NULL,NULL),(379,100243,2,2,2,15,0,100006,NULL,NULL,NULL),(380,100244,2,1,1,9,1,100112,NULL,NULL,NULL),(381,100244,2,1,1,8,1,100112,NULL,NULL,NULL),(382,100245,2,1,1,9,1,100112,NULL,NULL,NULL),(383,100245,2,1,1,8,1,100112,NULL,NULL,NULL),(384,100246,2,1,1,9,1,100112,NULL,NULL,NULL),(385,100246,2,1,1,8,1,100112,NULL,NULL,NULL),(386,100247,2,1,1,9,1,100112,NULL,NULL,NULL),(387,100247,2,1,1,8,1,100112,NULL,NULL,NULL),(388,100248,2,1,1,9,1,100112,NULL,NULL,NULL),(389,100248,2,1,1,8,1,100112,NULL,NULL,NULL),(390,100249,2,1,1,9,0,100112,NULL,NULL,NULL),(391,100250,2,1,1,9,1,100112,NULL,NULL,NULL),(392,100250,2,1,1,8,1,100112,NULL,NULL,NULL),(393,100251,2,1,1,9,1,100112,NULL,NULL,NULL),(394,100251,2,1,1,8,1,100112,NULL,NULL,NULL),(395,100252,2,1,1,9,0,100112,NULL,NULL,NULL),(396,100252,2,1,1,8,0,100112,NULL,NULL,NULL),(397,100253,2,1,1,9,1,100112,NULL,NULL,NULL),(398,100253,2,1,1,8,1,100112,NULL,NULL,NULL),(399,100254,2,1,1,9,1,100112,NULL,NULL,NULL),(400,100254,2,1,1,8,1,100112,NULL,NULL,NULL),(401,100255,2,1,1,9,1,100112,NULL,NULL,NULL),(402,100255,2,1,1,8,1,100112,NULL,NULL,NULL),(403,100256,2,1,1,9,1,100112,NULL,NULL,NULL),(404,100256,2,1,1,8,0,100112,NULL,NULL,NULL),(405,100257,2,1,1,9,1,100112,NULL,NULL,NULL),(406,100257,2,1,1,8,1,100112,NULL,NULL,NULL),(407,100258,2,1,1,9,0,100112,NULL,NULL,NULL),(408,100259,2,1,1,9,1,100112,NULL,NULL,NULL),(409,100259,2,1,1,8,1,100112,NULL,NULL,NULL),(410,100260,2,1,1,9,1,100112,NULL,NULL,NULL),(411,100260,2,1,1,8,1,100112,NULL,NULL,NULL),(412,100261,2,1,1,9,1,100112,NULL,NULL,NULL),(413,100261,2,1,1,8,1,100112,NULL,NULL,NULL),(414,100262,2,1,1,9,1,100112,NULL,NULL,NULL),(415,100262,2,1,1,8,1,100112,NULL,NULL,NULL),(416,100263,2,1,1,9,1,100112,NULL,NULL,NULL),(417,100263,2,1,1,8,1,100112,NULL,NULL,NULL),(418,100264,2,1,1,9,1,100112,NULL,NULL,NULL),(419,100264,2,1,1,8,1,100112,NULL,NULL,NULL),(420,100265,2,1,1,9,1,100112,NULL,NULL,NULL),(421,100265,2,1,1,8,1,100112,NULL,NULL,NULL),(422,100266,2,1,1,9,1,100112,NULL,NULL,NULL),(423,100266,2,1,1,8,1,100112,NULL,NULL,NULL),(424,100267,2,1,1,9,1,100112,NULL,NULL,NULL),(425,100267,2,1,1,8,1,100112,NULL,NULL,NULL),(426,100268,2,1,1,9,1,100112,NULL,NULL,NULL),(427,100268,2,1,1,8,1,100112,NULL,NULL,NULL),(428,100269,2,1,1,9,1,100112,NULL,NULL,NULL),(429,100269,2,1,1,8,1,100112,NULL,NULL,NULL),(430,100270,2,1,1,9,1,100111,NULL,NULL,NULL),(431,100270,2,1,1,8,1,100111,NULL,NULL,NULL),(432,100271,2,1,1,9,1,100111,NULL,NULL,NULL),(433,100271,2,1,1,8,1,100111,NULL,NULL,NULL),(434,100272,1,29,1,12,0,100022,NULL,NULL,NULL),(435,100273,2,1,1,9,1,100111,NULL,NULL,NULL),(436,100273,2,1,1,8,1,100111,NULL,NULL,NULL),(437,100274,2,1,1,9,1,100111,NULL,NULL,NULL),(438,100274,2,1,1,8,1,100111,NULL,NULL,NULL),(439,100275,2,1,1,9,1,100111,NULL,NULL,NULL),(440,100275,2,1,1,8,1,100111,NULL,NULL,NULL),(441,100276,2,1,1,9,1,100111,NULL,NULL,NULL),(442,100276,2,1,1,8,1,100111,NULL,NULL,NULL),(443,100277,2,1,1,9,1,100111,NULL,NULL,NULL),(444,100277,2,1,1,8,1,100111,NULL,NULL,NULL),(445,100278,2,1,1,9,1,100111,NULL,NULL,NULL),(446,100278,2,1,1,8,1,100111,NULL,NULL,NULL),(447,100279,2,1,1,9,1,100111,NULL,NULL,NULL),(448,100279,2,1,1,8,1,100111,NULL,NULL,NULL),(449,100280,2,1,1,9,1,100111,NULL,NULL,NULL),(450,100280,2,1,1,8,1,100111,NULL,NULL,NULL),(451,100281,2,1,1,9,1,100111,NULL,NULL,NULL),(452,100281,2,1,1,8,1,100111,NULL,NULL,NULL),(453,100282,2,1,1,9,1,100111,NULL,NULL,NULL),(454,100282,2,1,1,8,1,100111,NULL,NULL,NULL),(455,100283,2,1,1,9,1,100111,NULL,NULL,NULL),(456,100283,2,1,1,8,1,100111,NULL,NULL,NULL),(457,100284,1,46,1,2,0,4661,NULL,NULL,NULL),(458,100285,1,47,1,2,0,4661,NULL,NULL,NULL),(459,100286,1,48,1,2,0,4661,NULL,NULL,NULL),(460,100287,1,49,1,2,0,4661,NULL,NULL,NULL),(461,100288,1,50,1,2,0,4661,NULL,NULL,NULL),(462,100289,2,1,1,9,1,100111,NULL,NULL,NULL),(463,100289,2,1,1,8,1,100111,NULL,NULL,NULL),(464,100290,2,1,1,9,1,100111,NULL,NULL,NULL),(465,100290,2,1,1,8,1,100111,NULL,NULL,NULL),(466,100291,2,2,2,15,0,100006,NULL,NULL,NULL),(467,100292,2,1,1,9,1,100111,NULL,NULL,NULL),(468,100292,2,1,1,8,1,100111,NULL,NULL,NULL),(469,100293,2,1,1,9,1,100111,NULL,NULL,NULL),(470,100293,2,1,1,8,1,100111,NULL,NULL,NULL),(471,100294,2,1,1,9,0,100015,NULL,NULL,NULL),(472,100295,2,1,1,9,1,100111,NULL,NULL,NULL),(473,100295,2,1,1,8,1,100111,NULL,NULL,NULL),(474,100296,2,1,1,9,1,100111,NULL,NULL,NULL),(475,100296,2,1,1,8,1,100111,NULL,NULL,NULL),(476,100297,2,1,1,9,1,100111,NULL,NULL,NULL),(477,100297,2,1,1,8,1,100111,NULL,NULL,NULL),(478,100298,2,1,1,9,1,100112,NULL,NULL,NULL),(479,100298,2,1,1,8,1,100112,NULL,NULL,NULL),(480,100299,2,1,1,9,1,100112,NULL,NULL,NULL),(481,100299,2,1,1,8,1,100112,NULL,NULL,NULL),(482,100300,2,1,1,9,1,100112,NULL,NULL,NULL),(483,100300,2,1,1,8,1,100112,NULL,NULL,NULL),(484,100301,2,1,1,9,1,100112,NULL,NULL,NULL),(485,100301,2,1,1,8,1,100112,NULL,NULL,NULL),(486,100302,2,1,1,9,1,100112,NULL,NULL,NULL),(487,100302,2,1,1,8,1,100112,NULL,NULL,NULL),(488,100303,2,1,1,9,1,100112,NULL,NULL,NULL),(489,100303,2,1,1,8,1,100112,NULL,NULL,NULL),(490,100304,2,1,1,9,1,100112,NULL,NULL,NULL),(491,100304,2,1,1,8,1,100112,NULL,NULL,NULL),(492,100305,2,1,1,9,1,100112,NULL,NULL,NULL),(493,100305,2,1,1,8,1,100112,NULL,NULL,NULL),(494,100306,2,1,1,9,1,100112,NULL,NULL,NULL),(495,100307,2,1,1,9,1,100112,NULL,NULL,NULL),(496,100306,2,1,1,8,1,100112,NULL,NULL,NULL),(497,100307,2,1,1,8,1,100112,NULL,NULL,NULL),(498,100308,1,21,2,17,0,100032,NULL,NULL,NULL),(499,100309,2,1,1,9,1,100112,NULL,NULL,NULL),(500,100309,2,1,1,8,1,100112,NULL,NULL,NULL),(501,100310,2,2,2,15,0,100238,NULL,NULL,NULL),(502,100310,1,21,2,18,0,100238,NULL,NULL,NULL),(503,100311,2,2,2,15,0,100182,NULL,NULL,NULL),(504,100312,1,51,1,2,0,4661,NULL,NULL,NULL),(505,100108,1,29,1,12,0,100022,NULL,NULL,NULL),(506,100313,1,29,1,10,0,100022,NULL,NULL,NULL),(507,100314,1,29,1,10,0,100022,NULL,NULL,NULL),(508,100315,1,29,1,10,0,100022,NULL,NULL,NULL),(509,100316,2,1,1,9,1,100112,NULL,NULL,NULL),(510,100316,2,1,1,8,1,100112,NULL,NULL,NULL),(511,100317,2,1,1,9,1,100112,NULL,NULL,NULL),(512,100317,2,1,1,8,1,100112,NULL,NULL,NULL),(513,100318,2,1,1,9,1,100112,NULL,NULL,NULL),(514,100318,2,1,1,8,1,100112,NULL,NULL,NULL),(515,100319,2,2,2,15,0,100311,NULL,NULL,NULL),(516,100319,1,21,2,18,0,100311,NULL,NULL,NULL),(517,100320,2,1,1,9,0,100005,NULL,NULL,NULL),(518,100321,1,29,1,10,0,100015,NULL,NULL,NULL),(519,100322,2,1,1,9,1,100111,NULL,NULL,NULL),(520,100322,2,1,1,8,0,100111,NULL,NULL,NULL),(521,100323,2,1,1,9,1,100111,NULL,NULL,NULL),(522,100323,2,1,1,8,1,100111,NULL,NULL,NULL),(523,100324,2,1,1,9,1,100111,NULL,NULL,NULL),(524,100324,2,1,1,8,1,100111,NULL,NULL,NULL),(525,100325,2,1,1,9,1,100111,NULL,NULL,NULL),(526,100325,2,1,1,8,1,100111,NULL,NULL,NULL),(527,100326,2,1,1,9,1,100111,NULL,NULL,NULL),(528,100326,2,1,1,8,1,100111,NULL,NULL,NULL),(529,100327,2,1,1,9,1,100111,NULL,NULL,NULL),(530,100327,2,1,1,8,1,100111,NULL,NULL,NULL),(531,100328,2,1,1,9,1,100111,NULL,NULL,NULL),(532,100328,2,1,1,8,1,100111,NULL,NULL,NULL),(533,100329,1,46,1,12,1,100005,NULL,NULL,NULL),(534,100329,2,1,1,9,0,100005,NULL,NULL,NULL),(535,100330,2,1,1,9,0,100005,NULL,NULL,NULL),(536,100331,1,29,1,10,0,100005,NULL,NULL,NULL),(537,100332,2,1,1,9,1,100111,NULL,NULL,NULL),(538,100332,2,1,1,8,1,100111,NULL,NULL,NULL),(539,100333,2,1,1,9,1,100111,NULL,NULL,NULL),(540,100333,2,1,1,8,1,100111,NULL,NULL,NULL),(541,100334,2,1,1,9,1,100111,NULL,NULL,NULL),(542,100334,2,1,1,8,1,100111,NULL,NULL,NULL),(543,100335,2,2,2,15,0,100213,NULL,NULL,NULL),(544,100336,2,1,1,9,1,100111,NULL,NULL,NULL),(545,100336,2,1,1,8,1,100111,NULL,NULL,NULL),(546,100337,2,1,1,9,1,100111,NULL,NULL,NULL),(547,100337,2,1,1,8,1,100111,NULL,NULL,NULL),(548,100338,2,1,1,9,0,100022,NULL,NULL,NULL),(549,100339,2,2,2,15,0,100319,NULL,NULL,NULL),(550,100340,2,1,1,9,0,100111,NULL,NULL,NULL),(551,100340,2,1,1,8,0,100111,NULL,NULL,NULL),(552,100341,2,1,1,9,0,100111,NULL,NULL,NULL),(553,100342,2,1,1,9,1,100111,NULL,NULL,NULL),(554,100342,2,1,1,8,1,100111,NULL,NULL,NULL),(555,100343,2,1,1,9,1,100111,NULL,NULL,NULL),(556,100343,2,1,1,8,1,100111,NULL,NULL,NULL),(557,100344,2,1,1,9,0,100111,NULL,NULL,NULL),(558,100345,2,1,1,9,0,100111,NULL,NULL,NULL),(559,100346,2,1,1,9,1,100111,NULL,NULL,NULL),(560,100346,2,1,1,8,0,100111,NULL,NULL,NULL),(561,100347,2,1,1,9,1,100111,NULL,NULL,NULL),(562,100347,2,1,1,8,0,100111,NULL,NULL,NULL),(563,100348,2,1,1,9,1,100111,NULL,NULL,NULL),(564,100348,2,1,1,8,1,100111,NULL,NULL,NULL),(565,100349,2,1,1,9,0,100111,NULL,NULL,NULL),(566,100350,2,1,1,9,1,100111,NULL,NULL,NULL),(567,100350,2,1,1,8,1,100111,NULL,NULL,NULL),(568,100351,2,1,1,9,1,100111,NULL,NULL,NULL),(569,100351,2,1,1,8,1,100111,NULL,NULL,NULL),(570,100352,2,1,1,9,1,100111,NULL,NULL,NULL),(571,100352,2,1,1,8,1,100111,NULL,NULL,NULL),(572,100353,2,1,1,9,1,100111,NULL,NULL,NULL),(573,100353,2,1,1,8,1,100111,NULL,NULL,NULL),(574,100354,2,1,1,9,1,100111,NULL,NULL,NULL),(575,100354,2,1,1,8,1,100111,NULL,NULL,NULL),(576,100355,2,1,1,9,1,100111,NULL,NULL,NULL),(577,100355,2,1,1,8,1,100111,NULL,NULL,NULL),(578,100356,2,1,1,9,1,100111,NULL,NULL,NULL),(579,100356,2,1,1,8,0,100111,NULL,NULL,NULL),(580,100357,2,1,1,9,1,100111,NULL,NULL,NULL),(581,100357,2,1,1,8,1,100111,NULL,NULL,NULL),(582,100358,2,1,1,9,1,100111,NULL,NULL,NULL),(583,100358,2,1,1,8,1,100111,NULL,NULL,NULL),(584,100359,2,1,1,9,1,100111,NULL,NULL,NULL),(585,100359,2,1,1,8,1,100111,NULL,NULL,NULL),(586,100360,2,1,1,9,1,100111,NULL,NULL,NULL),(587,100360,2,1,1,8,1,100111,NULL,NULL,NULL),(588,100361,2,1,1,9,1,100111,NULL,NULL,NULL),(589,100361,2,1,1,8,1,100111,NULL,NULL,NULL),(590,100362,1,21,2,18,0,100319,NULL,NULL,NULL),(591,100363,2,1,1,9,1,100111,NULL,NULL,NULL),(592,100363,2,1,1,8,1,100111,NULL,NULL,NULL),(593,100364,2,1,1,9,1,100111,NULL,NULL,NULL),(594,100364,2,1,1,8,1,100111,NULL,NULL,NULL),(595,100365,2,1,1,9,1,100111,NULL,NULL,NULL),(596,100365,2,1,1,8,1,100111,NULL,NULL,NULL),(597,100366,2,1,1,9,1,100111,NULL,NULL,NULL),(598,100366,2,1,1,8,1,100111,NULL,NULL,NULL),(599,100367,2,1,1,9,1,100111,NULL,NULL,NULL),(600,100367,2,1,1,8,1,100111,NULL,NULL,NULL),(601,100368,2,1,1,9,0,100111,NULL,NULL,NULL),(602,100369,2,1,1,9,1,100111,NULL,NULL,NULL),(603,100369,2,1,1,8,1,100111,NULL,NULL,NULL),(604,100370,2,1,1,9,1,100111,NULL,NULL,NULL),(605,100370,2,1,1,8,1,100111,NULL,NULL,NULL),(606,100371,2,1,1,9,1,100111,NULL,NULL,NULL),(607,100371,2,1,1,8,1,100111,NULL,NULL,NULL),(608,100372,2,1,1,9,1,100111,NULL,NULL,NULL),(609,100372,2,1,1,8,1,100111,NULL,NULL,NULL),(610,100373,2,2,2,15,0,100311,NULL,NULL,NULL),(611,100373,1,21,2,18,0,100311,NULL,NULL,NULL),(612,100374,2,1,1,9,1,100111,NULL,NULL,NULL),(613,100374,2,1,1,8,1,100111,NULL,NULL,NULL),(614,100375,2,1,1,9,1,100111,NULL,NULL,NULL),(615,100375,2,1,1,8,1,100111,NULL,NULL,NULL),(616,100376,2,1,1,9,1,100111,NULL,NULL,NULL),(617,100376,2,1,1,8,1,100111,NULL,NULL,NULL),(618,100377,2,1,1,9,1,100111,NULL,NULL,NULL),(619,100377,2,1,1,8,1,100111,NULL,NULL,NULL),(620,100378,2,1,1,9,1,100111,NULL,NULL,NULL),(621,100378,2,1,1,8,1,100111,NULL,NULL,NULL),(622,100379,2,1,1,9,1,100111,NULL,NULL,NULL),(623,100379,2,1,1,8,1,100111,NULL,NULL,NULL),(624,100380,2,1,1,9,1,100111,NULL,NULL,NULL),(625,100380,2,1,1,8,1,100111,NULL,NULL,NULL),(626,100381,2,1,1,9,1,100111,NULL,NULL,NULL),(627,100381,2,1,1,8,1,100111,NULL,NULL,NULL),(628,100382,2,1,1,9,1,100111,NULL,NULL,NULL),(629,100382,2,1,1,8,1,100111,NULL,NULL,NULL),(630,100383,2,1,1,9,1,100111,NULL,NULL,NULL),(631,100383,2,1,1,8,1,100111,NULL,NULL,NULL),(632,100384,2,1,1,9,1,100111,NULL,NULL,NULL),(633,100384,2,1,1,8,1,100111,NULL,NULL,NULL),(634,100385,2,1,1,9,1,100111,NULL,NULL,NULL),(635,100385,2,1,1,8,1,100111,NULL,NULL,NULL),(636,100386,2,1,1,9,1,100111,NULL,NULL,NULL),(637,100386,2,1,1,8,1,100111,NULL,NULL,NULL),(638,100387,2,1,1,9,1,100111,NULL,NULL,NULL),(639,100387,2,1,1,8,1,100111,NULL,NULL,NULL),(640,100388,2,1,1,9,1,100111,NULL,NULL,NULL),(641,100388,2,1,1,8,1,100111,NULL,NULL,NULL),(642,100389,2,1,1,9,1,100111,NULL,NULL,NULL),(643,100389,2,1,1,8,1,100111,NULL,NULL,NULL),(644,100390,2,1,1,9,1,100111,NULL,NULL,NULL),(645,100390,2,1,1,8,1,100111,NULL,NULL,NULL),(646,100391,2,1,1,9,1,100111,NULL,NULL,NULL),(647,100391,2,1,1,8,0,100111,NULL,NULL,NULL),(648,100392,2,1,1,9,1,100111,NULL,NULL,NULL),(649,100392,2,1,1,8,1,100111,NULL,NULL,NULL),(650,100393,2,1,1,9,1,100111,NULL,NULL,NULL),(651,100393,2,1,1,8,1,100111,NULL,NULL,NULL),(652,100394,1,52,1,2,0,4661,NULL,NULL,NULL),(653,100395,2,1,1,9,1,100111,NULL,NULL,NULL),(654,100395,2,1,1,8,1,100111,NULL,NULL,NULL),(655,100396,2,1,1,9,1,100111,NULL,NULL,NULL),(656,100396,2,1,1,8,1,100111,NULL,NULL,NULL),(657,100397,2,1,1,9,1,100111,NULL,NULL,NULL),(658,100397,2,1,1,8,1,100111,NULL,NULL,NULL),(659,100398,2,1,1,9,1,100111,NULL,NULL,NULL),(660,100398,2,1,1,8,1,100111,NULL,NULL,NULL),(661,100399,2,1,1,9,1,100111,NULL,NULL,NULL),(662,100399,2,1,1,8,1,100111,NULL,NULL,NULL),(663,100400,2,1,1,9,1,100111,NULL,NULL,NULL),(664,100400,2,1,1,8,1,100111,NULL,NULL,NULL),(665,100401,2,1,1,9,1,100111,NULL,NULL,NULL),(666,100401,2,1,1,8,1,100111,NULL,NULL,NULL),(667,100402,2,1,1,9,1,100111,NULL,NULL,NULL),(668,100402,2,1,1,8,1,100111,NULL,NULL,NULL),(669,100403,2,1,1,9,0,100111,NULL,NULL,NULL),(670,100404,2,1,1,9,1,100111,NULL,NULL,NULL),(671,100404,2,1,1,8,1,100111,NULL,NULL,NULL),(672,100405,2,1,1,9,1,100111,NULL,NULL,NULL),(673,100405,2,1,1,8,1,100111,NULL,NULL,NULL),(674,100406,2,1,1,9,1,100111,NULL,NULL,NULL),(675,100406,2,1,1,8,1,100111,NULL,NULL,NULL),(676,100407,2,1,1,9,1,100111,NULL,NULL,NULL),(677,100407,2,1,1,8,1,100111,NULL,NULL,NULL),(678,100408,2,1,1,9,1,100111,NULL,NULL,NULL),(679,100408,2,1,1,8,1,100111,NULL,NULL,NULL),(680,100409,2,1,1,9,1,100111,NULL,NULL,NULL),(681,100409,2,1,1,8,1,100111,NULL,NULL,NULL),(682,100410,2,1,1,9,1,100112,NULL,NULL,NULL),(683,100410,2,1,1,8,1,100112,NULL,NULL,NULL),(684,100411,2,1,1,9,1,100112,NULL,NULL,NULL),(685,100411,2,1,1,8,1,100112,NULL,NULL,NULL),(686,100412,2,1,1,9,1,100112,NULL,NULL,NULL),(687,100412,2,1,1,8,1,100112,NULL,NULL,NULL),(688,100413,2,1,1,9,1,100112,NULL,NULL,NULL),(689,100413,2,1,1,8,1,100112,NULL,NULL,NULL),(690,100414,2,1,1,9,1,100112,NULL,NULL,NULL),(691,100414,2,1,1,8,1,100112,NULL,NULL,NULL),(692,100415,2,1,1,9,1,100112,NULL,NULL,NULL),(693,100415,2,1,1,8,1,100112,NULL,NULL,NULL),(694,100416,2,1,1,9,1,100112,NULL,NULL,NULL),(695,100416,2,1,1,8,1,100112,NULL,NULL,NULL),(696,100417,2,1,1,9,1,100112,NULL,NULL,NULL),(697,100417,2,1,1,8,1,100112,NULL,NULL,NULL),(698,100418,2,1,1,9,1,100112,NULL,NULL,NULL),(699,100418,2,1,1,8,1,100112,NULL,NULL,NULL),(700,100419,2,1,1,9,1,100112,NULL,NULL,NULL),(701,100419,2,1,1,8,1,100112,NULL,NULL,NULL),(702,100420,2,1,1,9,1,100112,NULL,NULL,NULL),(703,100420,2,1,1,8,1,100112,NULL,NULL,NULL),(704,100421,2,1,1,9,1,100112,NULL,NULL,NULL),(705,100421,2,1,1,8,1,100112,NULL,NULL,NULL),(706,100422,2,1,1,9,1,100112,NULL,NULL,NULL),(707,100422,2,1,1,8,0,100112,NULL,NULL,NULL),(708,100423,2,1,1,9,1,100112,NULL,NULL,NULL),(709,100423,2,1,1,8,1,100112,NULL,NULL,NULL),(710,100424,2,1,1,9,1,100112,NULL,NULL,NULL),(711,100424,2,1,1,8,1,100112,NULL,NULL,NULL),(712,100425,2,1,1,9,1,100112,NULL,NULL,NULL),(713,100425,2,1,1,8,1,100112,NULL,NULL,NULL),(714,100426,2,1,1,9,1,100112,NULL,NULL,NULL),(715,100426,2,1,1,8,1,100112,NULL,NULL,NULL),(716,100427,2,1,1,9,1,100112,NULL,NULL,NULL),(717,100427,2,1,1,8,1,100112,NULL,NULL,NULL),(718,100428,2,1,1,9,1,100112,NULL,NULL,NULL),(719,100428,2,1,1,8,1,100112,NULL,NULL,NULL),(720,100429,2,1,1,9,1,100112,NULL,NULL,NULL),(721,100429,2,1,1,8,1,100112,NULL,NULL,NULL),(722,100430,2,1,1,9,1,100112,NULL,NULL,NULL),(723,100430,2,1,1,8,1,100112,NULL,NULL,NULL),(724,100431,2,1,1,9,1,100112,NULL,NULL,NULL),(725,100431,2,1,1,8,1,100112,NULL,NULL,NULL),(726,100432,2,1,1,9,1,100112,NULL,NULL,NULL),(727,100432,2,1,1,8,1,100112,NULL,NULL,NULL),(728,100433,2,1,1,9,1,100112,NULL,NULL,NULL),(729,100433,2,1,1,8,1,100112,NULL,NULL,NULL),(730,100434,2,1,1,9,1,100112,NULL,NULL,NULL),(731,100434,2,1,1,8,1,100112,NULL,NULL,NULL),(732,100435,2,1,1,9,1,100112,NULL,NULL,NULL),(733,100435,2,1,1,8,1,100112,NULL,NULL,NULL),(734,100436,2,1,1,9,1,100112,NULL,NULL,NULL),(735,100436,2,1,1,8,1,100112,NULL,NULL,NULL),(736,100437,2,1,1,9,1,100112,NULL,NULL,NULL),(737,100437,2,1,1,8,1,100112,NULL,NULL,NULL),(738,100438,2,1,1,9,1,100112,NULL,NULL,NULL),(739,100438,2,1,1,8,1,100112,NULL,NULL,NULL),(740,100439,2,1,1,9,1,100112,NULL,NULL,NULL),(741,100439,2,1,1,8,1,100112,NULL,NULL,NULL),(742,100440,2,1,1,9,1,100112,NULL,NULL,NULL),(743,100440,2,1,1,8,1,100112,NULL,NULL,NULL),(744,100441,2,1,1,9,1,100112,NULL,NULL,NULL),(745,100441,2,1,1,8,1,100112,NULL,NULL,NULL),(746,100442,2,1,1,9,1,100112,NULL,NULL,NULL),(747,100442,2,1,1,8,1,100112,NULL,NULL,NULL),(748,100443,2,1,1,9,1,100112,NULL,NULL,NULL),(749,100443,2,1,1,8,1,100112,NULL,NULL,NULL),(750,100444,2,1,1,9,1,100112,NULL,NULL,NULL),(751,100444,2,1,1,8,1,100112,NULL,NULL,NULL),(752,100445,2,1,1,9,1,100112,NULL,NULL,NULL),(753,100445,2,1,1,8,1,100112,NULL,NULL,NULL),(754,100446,2,1,1,9,1,100112,NULL,NULL,NULL),(755,100446,2,1,1,8,1,100112,NULL,NULL,NULL),(756,100447,2,1,1,9,1,100112,NULL,NULL,NULL),(757,100447,2,1,1,8,1,100112,NULL,NULL,NULL),(758,100448,2,1,1,9,1,100112,NULL,NULL,NULL),(759,100448,2,1,1,8,1,100112,NULL,NULL,NULL),(760,100449,2,1,1,9,1,100112,NULL,NULL,NULL),(761,100449,2,1,1,8,1,100112,NULL,NULL,NULL),(762,100450,2,1,1,9,1,100112,NULL,NULL,NULL),(763,100450,2,1,1,8,1,100112,NULL,NULL,NULL),(764,100451,2,1,1,9,1,100112,NULL,NULL,NULL),(765,100451,2,1,1,8,1,100112,NULL,NULL,NULL),(766,100452,2,1,1,9,1,100112,NULL,NULL,NULL),(767,100452,2,1,1,8,1,100112,NULL,NULL,NULL),(768,100453,2,1,1,9,1,100112,NULL,NULL,NULL),(769,100453,2,1,1,8,1,100112,NULL,NULL,NULL),(770,100454,2,1,1,9,1,100112,NULL,NULL,NULL),(771,100454,2,1,1,8,1,100112,NULL,NULL,NULL),(772,100455,2,1,1,9,1,100112,NULL,NULL,NULL),(773,100455,2,1,1,8,1,100112,NULL,NULL,NULL),(774,100456,2,1,1,9,1,100112,NULL,NULL,NULL),(775,100456,2,1,1,8,1,100112,NULL,NULL,NULL),(776,100457,2,1,1,9,1,100112,NULL,NULL,NULL),(777,100457,2,1,1,8,1,100112,NULL,NULL,NULL),(778,100458,2,1,1,9,1,100112,NULL,NULL,NULL),(779,100458,2,1,1,8,1,100112,NULL,NULL,NULL),(780,100459,2,1,1,9,1,100112,NULL,NULL,NULL),(781,100459,2,1,1,8,1,100112,NULL,NULL,NULL),(782,100460,2,1,1,9,1,100112,NULL,NULL,NULL),(783,100460,2,1,1,8,1,100112,NULL,NULL,NULL),(784,100461,2,1,1,9,1,100112,NULL,NULL,NULL),(785,100461,2,1,1,8,1,100112,NULL,NULL,NULL),(786,100462,2,1,1,9,1,100112,NULL,NULL,NULL),(787,100462,2,1,1,8,1,100112,NULL,NULL,NULL),(788,100463,2,1,1,9,1,100112,NULL,NULL,NULL),(789,100463,2,1,1,8,1,100112,NULL,NULL,NULL),(790,100464,2,1,1,9,1,100112,NULL,NULL,NULL),(791,100464,2,1,1,8,1,100112,NULL,NULL,NULL),(792,100465,2,1,1,9,1,100112,NULL,NULL,NULL),(793,100465,2,1,1,8,1,100112,NULL,NULL,NULL),(794,100466,2,1,1,9,1,100112,NULL,NULL,NULL),(795,100466,2,1,1,8,1,100112,NULL,NULL,NULL),(796,100467,2,1,1,9,1,100112,NULL,NULL,NULL),(797,100467,2,1,1,8,1,100112,NULL,NULL,NULL),(798,100468,2,1,1,9,1,100112,NULL,NULL,NULL),(799,100468,2,1,1,8,1,100112,NULL,NULL,NULL),(800,100469,2,1,1,9,1,100112,NULL,NULL,NULL),(801,100469,2,1,1,8,1,100112,NULL,NULL,NULL),(802,100470,2,1,1,9,1,100112,NULL,NULL,NULL),(803,100470,2,1,1,8,1,100112,NULL,NULL,NULL),(804,100471,2,1,1,9,1,100112,NULL,NULL,NULL),(805,100471,2,1,1,8,1,100112,NULL,NULL,NULL),(806,100472,2,1,1,9,1,100112,NULL,NULL,NULL),(807,100472,2,1,1,8,1,100112,NULL,NULL,NULL),(808,100473,2,1,1,9,1,100112,NULL,NULL,NULL),(809,100473,2,1,1,8,1,100112,NULL,NULL,NULL),(810,100474,2,1,1,9,1,100112,NULL,NULL,NULL),(811,100474,2,1,1,8,1,100112,NULL,NULL,NULL),(812,100475,2,1,1,9,1,100112,NULL,NULL,NULL),(813,100475,2,1,1,8,1,100112,NULL,NULL,NULL),(814,100476,2,1,1,9,1,100112,NULL,NULL,NULL),(815,100476,2,1,1,8,1,100112,NULL,NULL,NULL),(816,100477,2,1,1,9,1,100112,NULL,NULL,NULL),(817,100477,2,1,1,8,1,100112,NULL,NULL,NULL),(818,100478,2,1,1,9,1,100112,NULL,NULL,NULL),(819,100478,2,1,1,8,1,100112,NULL,NULL,NULL),(820,100479,2,1,1,9,1,100112,NULL,NULL,NULL),(821,100479,2,1,1,8,1,100112,NULL,NULL,NULL),(822,100480,2,1,1,9,1,100112,NULL,NULL,NULL),(823,100480,2,1,1,8,1,100112,NULL,NULL,NULL),(824,100481,2,1,1,9,1,100112,NULL,NULL,NULL),(825,100481,2,1,1,8,1,100112,NULL,NULL,NULL),(826,100482,2,1,1,9,1,100112,NULL,NULL,NULL),(827,100482,2,1,1,8,1,100112,NULL,NULL,NULL),(828,100483,2,1,1,9,0,100112,NULL,NULL,NULL),(829,100484,1,21,2,18,0,100215,NULL,NULL,NULL),(830,100485,1,19,2,16,0,100215,NULL,NULL,NULL),(831,100485,1,18,2,17,0,100215,NULL,NULL,NULL),(832,100486,2,1,1,9,1,100112,NULL,NULL,NULL),(833,100486,2,1,1,8,1,100112,NULL,NULL,NULL),(834,100487,2,1,1,9,1,100112,NULL,NULL,NULL),(835,100487,2,1,1,8,1,100112,NULL,NULL,NULL),(836,100488,2,1,1,9,1,100112,NULL,NULL,NULL),(837,100488,2,1,1,8,1,100112,NULL,NULL,NULL),(838,100489,2,1,1,9,1,100112,NULL,NULL,NULL),(839,100489,2,1,1,8,1,100112,NULL,NULL,NULL),(840,100490,2,1,1,9,1,100112,NULL,NULL,NULL),(841,100490,2,1,1,8,1,100112,NULL,NULL,NULL),(842,100491,2,1,1,9,1,100112,NULL,NULL,NULL),(843,100491,2,1,1,8,1,100112,NULL,NULL,NULL),(844,100492,2,1,1,9,1,100112,NULL,NULL,NULL),(845,100492,2,1,1,8,1,100112,NULL,NULL,NULL),(846,100493,2,1,1,9,1,100112,NULL,NULL,NULL),(847,100493,2,1,1,8,0,100112,NULL,NULL,NULL),(848,100494,2,1,1,9,0,100112,NULL,NULL,NULL),(849,100494,2,1,1,8,0,100112,NULL,NULL,NULL),(850,100495,2,1,1,9,1,100112,NULL,NULL,NULL),(851,100495,2,1,1,8,0,100112,NULL,NULL,NULL),(852,100496,2,1,1,9,1,100112,NULL,NULL,NULL),(853,100496,2,1,1,8,1,100112,NULL,NULL,NULL),(854,100497,2,1,1,9,1,100112,NULL,NULL,NULL),(855,100497,2,1,1,8,1,100112,NULL,NULL,NULL),(856,100498,2,1,1,9,1,100112,NULL,NULL,NULL),(857,100498,2,1,1,8,1,100112,NULL,NULL,NULL),(858,100499,2,1,1,9,1,100112,NULL,NULL,NULL),(859,100499,2,1,1,8,0,100112,NULL,NULL,NULL),(860,100500,2,1,1,9,1,100112,NULL,NULL,NULL),(861,100500,2,1,1,8,1,100112,NULL,NULL,NULL),(862,100501,2,1,1,9,1,100112,NULL,NULL,NULL),(863,100501,2,1,1,8,0,100112,NULL,NULL,NULL),(864,100502,2,1,1,9,1,100112,NULL,NULL,NULL),(865,100502,2,1,1,8,1,100112,NULL,NULL,NULL),(866,100503,2,1,1,9,1,100112,NULL,NULL,NULL),(867,100503,2,1,1,8,1,100112,NULL,NULL,NULL),(868,100504,2,1,1,9,1,100112,NULL,NULL,NULL),(869,100504,2,1,1,8,1,100112,NULL,NULL,NULL),(870,100505,2,1,1,9,1,100112,NULL,NULL,NULL),(871,100505,2,1,1,8,1,100112,NULL,NULL,NULL),(872,100506,2,1,1,9,1,100112,NULL,NULL,NULL),(873,100506,2,1,1,8,1,100112,NULL,NULL,NULL),(874,100137,2,2,2,15,0,100006,NULL,NULL,NULL),(875,100507,2,1,1,9,1,100112,NULL,NULL,NULL),(876,100507,2,1,1,8,1,100112,NULL,NULL,NULL),(877,100508,2,1,1,9,1,100112,NULL,NULL,NULL),(878,100508,2,1,1,8,1,100112,NULL,NULL,NULL),(879,100294,2,2,2,15,0,100015,NULL,NULL,NULL),(880,100329,2,2,2,15,0,100015,NULL,NULL,NULL),(881,100509,2,1,1,9,1,100112,NULL,NULL,NULL),(882,100509,2,1,1,8,1,100112,NULL,NULL,NULL),(883,100510,2,1,1,9,1,100112,NULL,NULL,NULL),(884,100510,2,1,1,8,1,100112,NULL,NULL,NULL),(885,100511,2,1,1,9,1,100112,NULL,NULL,NULL),(886,100511,2,1,1,8,1,100112,NULL,NULL,NULL),(887,100512,2,1,1,9,1,100112,NULL,NULL,NULL),(888,100512,2,1,1,8,1,100112,NULL,NULL,NULL),(889,100513,2,1,1,9,1,100112,NULL,NULL,NULL),(890,100513,2,1,1,8,1,100112,NULL,NULL,NULL),(891,100514,2,1,1,9,1,100112,NULL,NULL,NULL),(892,100514,2,1,1,8,1,100112,NULL,NULL,NULL),(893,100515,2,1,1,9,1,100112,NULL,NULL,NULL),(894,100515,2,1,1,8,1,100112,NULL,NULL,NULL),(895,100516,2,1,1,9,1,100112,NULL,NULL,NULL),(896,100516,2,1,1,8,1,100112,NULL,NULL,NULL),(897,100517,2,1,1,9,1,100112,NULL,NULL,NULL),(898,100517,2,1,1,8,1,100112,NULL,NULL,NULL),(899,100518,2,1,1,9,1,100112,NULL,NULL,NULL),(900,100518,2,1,1,8,1,100112,NULL,NULL,NULL),(901,100519,2,1,1,9,1,100112,NULL,NULL,NULL),(902,100519,2,1,1,8,1,100112,NULL,NULL,NULL),(903,100520,2,1,1,9,1,100112,NULL,NULL,NULL),(904,100520,2,1,1,8,1,100112,NULL,NULL,NULL),(905,100521,2,1,1,9,1,100112,NULL,NULL,NULL),(906,100521,2,1,1,8,1,100112,NULL,NULL,NULL),(907,100522,2,1,1,9,1,100112,NULL,NULL,NULL),(908,100522,2,1,1,8,1,100112,NULL,NULL,NULL),(909,100523,2,1,1,9,1,100112,NULL,NULL,NULL),(910,100523,2,1,1,8,1,100112,NULL,NULL,NULL),(911,100524,2,1,1,9,1,100112,NULL,NULL,NULL),(912,100524,2,1,1,8,1,100112,NULL,NULL,NULL),(913,100525,2,1,1,9,1,100111,NULL,NULL,NULL),(914,100525,2,1,1,8,1,100111,NULL,NULL,NULL),(915,100526,2,1,1,9,0,100015,NULL,NULL,NULL),(916,100527,2,1,1,9,1,100111,NULL,NULL,NULL),(917,100527,2,1,1,8,1,100111,NULL,NULL,NULL),(918,100528,2,1,1,9,1,100111,NULL,NULL,NULL),(919,100528,2,1,1,8,1,100111,NULL,NULL,NULL),(920,100529,2,1,1,9,1,100112,NULL,NULL,NULL),(921,100529,2,1,1,8,1,100112,NULL,NULL,NULL),(922,100530,2,1,1,9,1,100112,NULL,NULL,NULL),(923,100530,2,1,1,8,1,100112,NULL,NULL,NULL),(924,100531,2,1,1,9,1,100112,NULL,NULL,NULL),(925,100531,2,1,1,8,1,100112,NULL,NULL,NULL),(926,100532,2,1,1,9,1,100112,NULL,NULL,NULL),(927,100532,2,1,1,8,1,100112,NULL,NULL,NULL),(928,100533,2,1,1,9,1,100112,NULL,NULL,NULL),(929,100533,2,1,1,8,1,100112,NULL,NULL,NULL),(930,100534,2,1,1,9,1,100112,NULL,NULL,NULL),(931,100534,2,1,1,8,1,100112,NULL,NULL,NULL),(932,100535,2,1,1,9,1,100112,NULL,NULL,NULL),(933,100535,2,1,1,8,1,100112,NULL,NULL,NULL),(934,100536,2,1,1,9,1,100112,NULL,NULL,NULL),(935,100536,2,1,1,8,1,100112,NULL,NULL,NULL),(936,100537,1,29,1,12,0,100015,NULL,NULL,NULL),(937,100538,2,1,1,9,1,100112,NULL,NULL,NULL),(938,100538,2,1,1,8,1,100112,NULL,NULL,NULL),(939,100539,2,1,1,9,0,100294,NULL,NULL,NULL),(940,100540,2,1,1,9,0,100015,NULL,NULL,NULL),(941,100541,2,1,1,9,1,100112,NULL,NULL,NULL),(942,100541,2,1,1,8,1,100112,NULL,NULL,NULL),(943,100542,2,1,1,9,1,100112,NULL,NULL,NULL),(944,100542,2,1,1,8,1,100112,NULL,NULL,NULL),(945,100543,2,1,1,9,1,100112,NULL,NULL,NULL),(946,100543,2,1,1,8,1,100112,NULL,NULL,NULL),(947,100544,2,1,1,9,1,100112,NULL,NULL,NULL),(948,100544,2,1,1,8,1,100112,NULL,NULL,NULL),(949,100545,2,1,1,9,1,100112,NULL,NULL,NULL),(950,100545,2,1,1,8,1,100112,NULL,NULL,NULL),(951,100546,2,1,1,9,1,100112,NULL,NULL,NULL),(952,100546,2,1,1,8,1,100112,NULL,NULL,NULL),(953,100547,2,1,1,9,1,100112,NULL,NULL,NULL),(954,100547,2,1,1,8,1,100112,NULL,NULL,NULL),(955,100548,2,1,1,9,1,100112,NULL,NULL,NULL),(956,100548,2,1,1,8,1,100112,NULL,NULL,NULL),(957,100549,2,1,1,9,1,100112,NULL,NULL,NULL),(958,100549,2,1,1,8,1,100112,NULL,NULL,NULL),(959,100550,2,1,1,9,1,100112,NULL,NULL,NULL),(960,100550,2,1,1,8,1,100112,NULL,NULL,NULL),(961,100551,2,1,1,9,1,100112,NULL,NULL,NULL),(962,100551,2,1,1,8,1,100112,NULL,NULL,NULL),(963,100552,2,1,1,9,1,100112,NULL,NULL,NULL),(964,100552,2,1,1,8,1,100112,NULL,NULL,NULL),(965,100553,2,1,1,9,1,100112,NULL,NULL,NULL),(966,100553,2,1,1,8,1,100112,NULL,NULL,NULL),(967,100554,2,1,1,9,1,100112,NULL,NULL,NULL),(968,100554,2,1,1,8,1,100112,NULL,NULL,NULL),(969,100555,2,1,1,9,1,100112,NULL,NULL,NULL),(970,100555,2,1,1,8,1,100112,NULL,NULL,NULL),(971,100556,2,1,1,9,1,100112,NULL,NULL,NULL),(972,100556,2,1,1,8,1,100112,NULL,NULL,NULL),(973,100557,2,1,1,9,1,100112,NULL,NULL,NULL),(974,100557,2,1,1,8,1,100112,NULL,NULL,NULL),(975,100558,2,1,1,9,1,100112,NULL,NULL,NULL),(976,100558,2,1,1,8,1,100112,NULL,NULL,NULL),(977,100559,2,1,1,9,1,100112,NULL,NULL,NULL),(978,100559,2,1,1,8,1,100112,NULL,NULL,NULL),(979,100560,2,1,1,9,1,100112,NULL,NULL,NULL),(980,100560,2,1,1,8,1,100112,NULL,NULL,NULL),(981,100561,2,1,1,9,1,100112,NULL,NULL,NULL),(982,100561,2,1,1,8,1,100112,NULL,NULL,NULL),(983,100562,2,1,1,9,1,100112,NULL,NULL,NULL),(984,100562,2,1,1,8,1,100112,NULL,NULL,NULL),(985,100563,2,1,1,9,1,100112,NULL,NULL,NULL),(986,100563,2,1,1,8,1,100112,NULL,NULL,NULL),(987,100564,2,1,1,9,1,100112,NULL,NULL,NULL),(988,100564,2,1,1,8,1,100112,NULL,NULL,NULL),(989,100565,2,1,1,9,1,100112,NULL,NULL,NULL),(990,100565,2,1,1,8,1,100112,NULL,NULL,NULL),(991,100566,2,1,1,9,1,100112,NULL,NULL,NULL),(992,100566,2,1,1,8,0,100112,NULL,NULL,NULL),(993,100567,2,1,1,9,1,100112,NULL,NULL,NULL),(994,100567,2,1,1,8,1,100112,NULL,NULL,NULL),(995,100568,2,1,1,9,1,100112,NULL,NULL,NULL),(996,100568,2,1,1,8,1,100112,NULL,NULL,NULL),(997,100569,2,1,1,9,1,100112,NULL,NULL,NULL),(998,100569,2,1,1,8,0,100112,NULL,NULL,NULL),(999,100570,2,1,1,9,1,100111,NULL,NULL,NULL),(1000,100570,2,1,1,8,1,100111,NULL,NULL,NULL),(1001,100571,2,1,1,9,1,100111,NULL,NULL,NULL),(1002,100571,2,1,1,8,1,100111,NULL,NULL,NULL),(1003,100572,2,1,1,9,1,100111,NULL,NULL,NULL),(1004,100572,2,1,1,8,1,100111,NULL,NULL,NULL),(1005,100573,2,1,1,9,1,100111,NULL,NULL,NULL),(1006,100573,2,1,1,8,1,100111,NULL,NULL,NULL),(1007,100574,2,1,1,9,1,100111,NULL,NULL,NULL),(1008,100574,2,1,1,8,1,100111,NULL,NULL,NULL),(1009,100575,2,1,1,9,1,100112,NULL,NULL,NULL),(1010,100575,2,1,1,8,1,100112,NULL,NULL,NULL),(1011,100576,2,1,1,9,1,100112,NULL,NULL,NULL),(1012,100576,2,1,1,8,1,100112,NULL,NULL,NULL),(1013,100577,2,1,1,9,1,100112,NULL,NULL,NULL),(1014,100577,2,1,1,8,1,100112,NULL,NULL,NULL),(1015,100578,2,1,1,9,1,100112,NULL,NULL,NULL),(1016,100578,2,1,1,8,1,100112,NULL,NULL,NULL),(1017,100579,2,1,1,9,1,100111,NULL,NULL,NULL),(1018,100579,2,1,1,8,1,100111,NULL,NULL,NULL),(1019,100580,2,1,1,9,1,100112,NULL,NULL,NULL),(1020,100580,2,1,1,8,1,100112,NULL,NULL,NULL),(1021,100581,2,1,1,9,1,100112,NULL,NULL,NULL),(1022,100581,2,1,1,8,1,100112,NULL,NULL,NULL),(1023,100582,2,1,1,9,1,100112,NULL,NULL,NULL),(1024,100582,2,1,1,8,1,100112,NULL,NULL,NULL),(1025,100583,2,1,1,9,1,100112,NULL,NULL,NULL),(1026,100583,2,1,1,8,1,100112,NULL,NULL,NULL),(1027,100584,2,1,1,9,1,100112,NULL,NULL,NULL),(1028,100584,2,1,1,8,1,100112,NULL,NULL,NULL),(1029,100585,2,1,1,9,1,100112,NULL,NULL,NULL),(1030,100585,2,1,1,8,1,100112,NULL,NULL,NULL),(1031,100586,2,1,1,9,1,100112,NULL,NULL,NULL),(1032,100586,2,1,1,8,1,100112,NULL,NULL,NULL),(1033,100587,2,1,1,9,1,100112,NULL,NULL,NULL),(1034,100587,2,1,1,8,1,100112,NULL,NULL,NULL),(1035,100588,2,1,1,9,1,100112,NULL,NULL,NULL),(1036,100589,2,1,1,9,1,100112,NULL,NULL,NULL),(1037,100589,2,1,1,8,1,100112,NULL,NULL,NULL),(1038,100590,2,1,1,9,1,100112,NULL,NULL,NULL),(1039,100590,2,1,1,8,1,100112,NULL,NULL,NULL),(1040,100591,2,1,1,9,1,100112,NULL,NULL,NULL),(1041,100591,2,1,1,8,1,100112,NULL,NULL,NULL),(1042,100592,2,1,1,9,1,100112,NULL,NULL,NULL),(1043,100592,2,1,1,8,1,100112,NULL,NULL,NULL),(1044,100593,2,1,1,9,1,100112,NULL,NULL,NULL),(1045,100593,2,1,1,8,1,100112,NULL,NULL,NULL),(1046,100594,2,1,1,9,1,100112,NULL,NULL,NULL),(1047,100594,2,1,1,8,1,100112,NULL,NULL,NULL),(1048,100595,2,1,1,9,1,100112,NULL,NULL,NULL),(1049,100595,2,1,1,8,1,100112,NULL,NULL,NULL),(1050,100596,2,1,1,9,1,100112,NULL,NULL,NULL),(1051,100596,2,1,1,8,1,100112,NULL,NULL,NULL),(1052,100597,2,1,1,9,1,100112,NULL,NULL,NULL),(1053,100597,2,1,1,8,1,100112,NULL,NULL,NULL),(1054,100598,2,1,1,9,1,100112,NULL,NULL,NULL),(1055,100598,2,1,1,8,1,100112,NULL,NULL,NULL),(1056,100599,2,1,1,9,1,100112,NULL,NULL,NULL),(1057,100599,2,1,1,8,0,100112,NULL,NULL,NULL),(1058,100600,2,1,1,9,1,100112,NULL,NULL,NULL),(1059,100600,2,1,1,8,0,100112,NULL,NULL,NULL),(1060,100601,2,1,1,9,1,100112,NULL,NULL,NULL),(1061,100601,2,1,1,8,1,100112,NULL,NULL,NULL),(1062,100602,2,1,1,9,1,100112,NULL,NULL,NULL),(1063,100602,2,1,1,8,1,100112,NULL,NULL,NULL),(1064,100603,2,1,1,9,1,100112,NULL,NULL,NULL),(1065,100603,2,1,1,8,1,100112,NULL,NULL,NULL),(1066,100604,2,1,1,9,1,100112,NULL,NULL,NULL),(1067,100604,2,1,1,8,1,100112,NULL,NULL,NULL),(1068,100605,2,1,1,9,1,100112,NULL,NULL,NULL),(1069,100605,2,1,1,8,1,100112,NULL,NULL,NULL),(1070,100606,2,1,1,9,1,100112,NULL,NULL,NULL),(1071,100606,2,1,1,8,1,100112,NULL,NULL,NULL),(1072,100607,2,1,1,9,1,100112,NULL,NULL,NULL),(1073,100607,2,1,1,8,1,100112,NULL,NULL,NULL),(1074,100608,2,1,1,9,1,100112,NULL,NULL,NULL),(1075,100608,2,1,1,8,1,100112,NULL,NULL,NULL),(1076,100609,2,1,1,9,1,100112,NULL,NULL,NULL),(1077,100609,2,1,1,8,1,100112,NULL,NULL,NULL),(1078,100610,2,1,1,9,0,100112,NULL,NULL,NULL),(1079,100611,2,1,1,9,1,100112,NULL,NULL,NULL),(1080,100611,2,1,1,8,1,100112,NULL,NULL,NULL),(1081,100612,2,1,1,9,1,100112,NULL,NULL,NULL),(1082,100612,2,1,1,8,1,100112,NULL,NULL,NULL),(1083,100613,2,1,1,9,1,100112,NULL,NULL,NULL),(1084,100613,2,1,1,8,1,100112,NULL,NULL,NULL),(1085,100614,2,1,1,9,1,100112,NULL,NULL,NULL),(1086,100614,2,1,1,8,1,100112,NULL,NULL,NULL),(1087,100615,2,1,1,9,1,100112,NULL,NULL,NULL),(1088,100615,2,1,1,8,1,100112,NULL,NULL,NULL),(1089,100616,2,1,1,9,1,100112,NULL,NULL,NULL),(1090,100616,2,1,1,8,1,100112,NULL,NULL,NULL),(1091,100617,2,1,1,9,1,100112,NULL,NULL,NULL),(1092,100617,2,1,1,8,1,100112,NULL,NULL,NULL),(1093,100618,2,1,1,9,1,100112,NULL,NULL,NULL),(1094,100618,2,1,1,8,1,100112,NULL,NULL,NULL),(1095,100619,2,1,1,9,1,100112,NULL,NULL,NULL),(1096,100619,2,1,1,8,1,100112,NULL,NULL,NULL),(1097,100620,2,1,1,9,1,100112,NULL,NULL,NULL),(1098,100620,2,1,1,8,1,100112,NULL,NULL,NULL),(1099,100621,2,1,1,9,1,100112,NULL,NULL,NULL),(1100,100621,2,1,1,8,1,100112,NULL,NULL,NULL),(1101,100622,2,1,1,9,1,100112,NULL,NULL,NULL),(1102,100622,2,1,1,8,1,100112,NULL,NULL,NULL),(1103,100623,2,1,1,9,1,100112,NULL,NULL,NULL),(1104,100623,2,1,1,8,1,100112,NULL,NULL,NULL),(1105,100624,2,1,1,9,1,100112,NULL,NULL,NULL),(1106,100624,2,1,1,8,1,100112,NULL,NULL,NULL),(1107,100625,2,1,1,9,1,100112,NULL,NULL,NULL),(1108,100625,2,1,1,8,1,100112,NULL,NULL,NULL),(1109,100626,2,1,1,9,1,100112,NULL,NULL,NULL),(1110,100626,2,1,1,8,1,100112,NULL,NULL,NULL),(1111,100627,2,1,1,9,1,100112,NULL,NULL,NULL),(1112,100627,2,1,1,8,1,100112,NULL,NULL,NULL),(1113,100628,2,1,1,9,1,100112,NULL,NULL,NULL),(1114,100628,2,1,1,8,1,100112,NULL,NULL,NULL),(1115,100629,2,1,1,9,1,100112,NULL,NULL,NULL),(1116,100629,2,1,1,8,1,100112,NULL,NULL,NULL),(1117,100630,2,1,1,9,1,100112,NULL,NULL,NULL),(1118,100630,2,1,1,8,1,100112,NULL,NULL,NULL),(1119,100631,2,1,1,9,1,100112,NULL,NULL,NULL),(1120,100631,2,1,1,8,1,100112,NULL,NULL,NULL),(1121,100632,2,1,1,9,1,100112,NULL,NULL,NULL),(1122,100632,2,1,1,8,1,100112,NULL,NULL,NULL),(1123,100633,2,1,1,9,1,100112,NULL,NULL,NULL),(1124,100633,2,1,1,8,1,100112,NULL,NULL,NULL),(1125,100634,2,1,1,9,1,100112,NULL,NULL,NULL),(1126,100634,2,1,1,8,1,100112,NULL,NULL,NULL),(1127,100635,2,1,1,9,1,100112,NULL,NULL,NULL),(1128,100635,2,1,1,8,1,100112,NULL,NULL,NULL),(1129,100636,2,1,1,9,1,100112,NULL,NULL,NULL),(1130,100636,2,1,1,8,1,100112,NULL,NULL,NULL),(1131,100637,2,1,1,9,1,100112,NULL,NULL,NULL),(1132,100637,2,1,1,8,1,100112,NULL,NULL,NULL),(1133,100638,2,1,1,9,1,100112,NULL,NULL,NULL),(1134,100638,2,1,1,8,1,100112,NULL,NULL,NULL),(1135,100639,2,1,1,9,1,100112,NULL,NULL,NULL),(1136,100639,2,1,1,8,1,100112,NULL,NULL,NULL),(1137,100640,2,1,1,9,1,100112,NULL,NULL,NULL),(1138,100640,2,1,1,8,1,100112,NULL,NULL,NULL),(1139,100641,2,1,1,9,1,100112,NULL,NULL,NULL),(1140,100641,2,1,1,8,1,100112,NULL,NULL,NULL),(1141,100642,2,1,1,9,1,100112,NULL,NULL,NULL),(1142,100642,2,1,1,8,1,100112,NULL,NULL,NULL),(1143,100643,2,1,1,9,1,100112,NULL,NULL,NULL),(1144,100643,2,1,1,8,1,100112,NULL,NULL,NULL),(1145,100644,2,1,1,9,1,100112,NULL,NULL,NULL),(1146,100644,2,1,1,8,1,100112,NULL,NULL,NULL),(1147,100645,2,1,1,9,1,100112,NULL,NULL,NULL),(1148,100645,2,1,1,8,1,100112,NULL,NULL,NULL),(1149,100646,2,1,1,9,1,100112,NULL,NULL,NULL),(1150,100646,2,1,1,8,1,100112,NULL,NULL,NULL),(1151,100647,2,1,1,9,1,100112,NULL,NULL,NULL),(1152,100647,2,1,1,8,1,100112,NULL,NULL,NULL),(1153,100648,2,1,1,9,1,100112,NULL,NULL,NULL),(1154,100648,2,1,1,8,1,100112,NULL,NULL,NULL),(1155,100649,2,1,1,9,1,100112,NULL,NULL,NULL),(1156,100649,2,1,1,8,1,100112,NULL,NULL,NULL),(1157,100650,2,1,1,9,1,100112,NULL,NULL,NULL),(1158,100650,2,1,1,8,1,100112,NULL,NULL,NULL),(1159,100651,2,1,1,9,1,100111,NULL,NULL,NULL),(1160,100651,2,1,1,8,1,100111,NULL,NULL,NULL),(1161,4661,2,3,3,3,0,4661,NULL,NULL,NULL),(1162,4662,2,3,3,3,0,4662,NULL,NULL,NULL),(1163,100243,2,3,3,3,0,4661,NULL,NULL,NULL),(1164,100137,2,3,3,3,0,4661,NULL,NULL,NULL),(1165,100138,2,3,3,3,0,4661,NULL,NULL,NULL),(1166,100104,2,3,3,3,0,4661,NULL,NULL,NULL),(1167,100652,2,1,1,9,1,100112,NULL,NULL,NULL),(1168,100652,2,1,1,8,1,100112,NULL,NULL,NULL),(1169,100653,2,1,1,9,1,100112,NULL,NULL,NULL),(1170,100653,2,1,1,8,1,100112,NULL,NULL,NULL),(1171,100654,2,1,1,9,1,100112,NULL,NULL,NULL),(1172,100654,2,1,1,8,1,100112,NULL,NULL,NULL),(1173,100655,2,1,1,9,1,100112,NULL,NULL,NULL),(1174,100655,2,1,1,8,1,100112,NULL,NULL,NULL),(1175,100656,2,1,1,9,1,100112,NULL,NULL,NULL),(1176,100656,2,1,1,8,1,100112,NULL,NULL,NULL),(1177,100657,2,1,1,9,1,100112,NULL,NULL,NULL),(1178,100657,2,1,1,8,1,100112,NULL,NULL,NULL),(1179,100658,2,1,1,9,1,100112,NULL,NULL,NULL),(1180,100658,2,1,1,8,1,100112,NULL,NULL,NULL),(1181,100659,2,1,1,9,1,100112,NULL,NULL,NULL),(1182,100659,2,1,1,8,1,100112,NULL,NULL,NULL),(1183,100660,2,1,1,9,1,100112,NULL,NULL,NULL),(1184,100660,2,1,1,8,1,100112,NULL,NULL,NULL),(1185,100661,2,1,1,9,1,100112,NULL,NULL,NULL),(1186,100661,2,1,1,8,1,100112,NULL,NULL,NULL),(1187,100662,2,1,1,9,1,100112,NULL,NULL,NULL),(1188,100662,2,1,1,8,1,100112,NULL,NULL,NULL),(1189,100663,2,1,1,9,1,100112,NULL,NULL,NULL),(1190,100663,2,1,1,8,1,100112,NULL,NULL,NULL),(1191,100664,2,1,1,9,1,100112,NULL,NULL,NULL),(1192,100664,2,1,1,8,1,100112,NULL,NULL,NULL),(1193,100665,2,1,1,9,1,100112,NULL,NULL,NULL),(1194,100665,2,1,1,8,1,100112,NULL,NULL,NULL),(1195,100666,2,1,1,9,1,100112,NULL,NULL,NULL),(1196,100666,2,1,1,8,1,100112,NULL,NULL,NULL),(1197,100667,2,1,1,9,1,100112,NULL,NULL,NULL),(1198,100667,2,1,1,8,1,100112,NULL,NULL,NULL),(1199,100668,2,1,1,9,1,100112,NULL,NULL,NULL),(1200,100668,2,1,1,8,1,100112,NULL,NULL,NULL),(1201,100669,2,1,1,9,1,100112,NULL,NULL,NULL),(1202,100669,2,1,1,8,1,100112,NULL,NULL,NULL),(1203,100670,2,1,1,9,1,100112,NULL,NULL,NULL),(1204,100670,2,1,1,8,1,100112,NULL,NULL,NULL),(1205,100671,2,1,1,9,1,100112,NULL,NULL,NULL),(1206,100671,2,1,1,8,1,100112,NULL,NULL,NULL),(1207,100672,2,1,1,9,1,100112,NULL,NULL,NULL),(1208,100672,2,1,1,8,1,100112,NULL,NULL,NULL); +/*!40000 ALTER TABLE `user_entity_mappings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `users` +-- + +DROP TABLE IF EXISTS `users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `users` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `user` char(200) CHARACTER SET latin1 DEFAULT NULL, + `password` char(60) DEFAULT NULL, + `email` char(250) CHARACTER SET latin1 NOT NULL, + `contact_no` char(15) CHARACTER SET latin1 NOT NULL, + `organization_id` int(11) NOT NULL, + `organization_type_id` int(11) NOT NULL, + `status_type_id` int(11) NOT NULL, + `activation_code` char(255) DEFAULT NULL, + `activation_code_expiration_time` datetime DEFAULT NULL, + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(30) CHARACTER SET latin1 DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `salt` char(35) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `email` (`email`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `users` +-- + +LOCK TABLES `users` WRITE; +/*!40000 ALTER TABLE `users` DISABLE KEYS */; +/*!40000 ALTER TABLE `users` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_users_insert_trigger BEFORE INSERT ON hades_db.users +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_users_update_trigger BEFORE UPDATE ON hades_db.users +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); + IF NEW.is_deleted = 1 THEN + UPDATE user_client_mappings set is_deleted = 1 where user_id = OLD.id; + UPDATE user_agency_mappings set is_deleted = 1 where user_id = OLD.id; + END IF; +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `users_v2` +-- + +DROP TABLE IF EXISTS `users_v2`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `users_v2` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `user` char(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `password` char(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `auth_provider_type_id` int(3) NOT NULL, + `auth_provider_value` char(250) COLLATE utf8mb4_unicode_ci NOT NULL, + `organization_id` int(11) NOT NULL, + `organization_type_id` int(11) NOT NULL, + `status_type_id` int(11) NOT NULL, + `activation_code` char(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `activation_code_expiration_time` datetime DEFAULT NULL, + `salt` char(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` char(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `auth_provider_type_id` (`auth_provider_type_id`,`auth_provider_value`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `users_v2` +-- + +LOCK TABLES `users_v2` WRITE; +/*!40000 ALTER TABLE `users_v2` DISABLE KEYS */; +/*!40000 ALTER TABLE `users_v2` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_users_v2_insert_trigger BEFORE INSERT ON hades_db.users_v2 +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_users_v2_update_trigger BEFORE UPDATE ON hades_db.users_v2 +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; + +-- +-- Table structure for table `users_v3` +-- + +DROP TABLE IF EXISTS `users_v3`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `users_v3` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `user` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `password` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `auth_provider_type_id` int(3) NOT NULL, + `auth_provider_value` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, + `agency_id` int(11) NOT NULL DEFAULT '-1', + `status_type_id` int(11) NOT NULL, + `activation_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `activation_code_expiration_time` datetime DEFAULT NULL, + `salt` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT '0', + `old_user_id` int(11) DEFAULT '-1', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `auth_provider_type_id` (`auth_provider_type_id`,`auth_provider_value`,`agency_id`) +) ENGINE=InnoDB AUTO_INCREMENT=100673 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `users_v3` +-- + +LOCK TABLES `users_v3` WRITE; +/*!40000 ALTER TABLE `users_v3` DISABLE KEYS */; +INSERT INTO `users_v3` VALUES (4661,'OS Admin','$2a$10$Z2v2FGKRydgQuX5y8tzGsO2W7BEMEoUjsHkNooR/bGeTplUs8IVo.',1,'29JxRBnH7s2g2KDLwtwyVm4drH/q50fV8RVZam2tsTw=',-1,1,NULL,NULL,'$2a$10$Z2v2FGKRydgQuX5y8tzGsO',0,-1,'2024-05-20 09:16:23','2024-05-20 09:16:52','hadesDbSvcUser@172.19.0.1'),(4662,'OS Admin','$2a$10$XFWnYue2pXZ8omIrRgbLv.Jl4pweYRZRY0SY5s6G/TtKP5ZQ1BhT.',1,'ABpdztoPqBvJoO23y/Yw7nS4Bkn8uZT+Xz05osskyjg=',-1,1,NULL,NULL,'$2a$10$XFWnYue2pXZ8omIrRgbLv.',0,-1,'2024-05-20 09:17:06','2024-05-20 09:17:16','hadesDbSvcUser@172.19.0.1'),(6030,'Vivek Patel','$2a$10$44mKSl7CERV2aXUkewqsdeTKx58dgkIfN3hfzcHVSV3SXIf6pDAMm',1,'jb9O7b79HBAxnCj+JRT/jc1nZHP9B5gpT4GiTiY3xKA=',-1,1,'1tmg0lhq0xh081x36p4i_240606132644','2024-06-07 13:26:44','$2a$10$44mKSl7CERV2aXUkewqsde',0,-1,'2024-05-20 09:17:34','2024-06-06 13:26:45','hadesDbSvcUser@172.19.0.1'),(100000,'Tving Admin','$2a$10$AKPKHj9orFmf7LtSamvmFOehfQoNXyxd0w/Kmmgf41ZlY9gpGt3SS',1,'dy+s5K1rqtzT4Ei1ezUro/d+/qGqepfTRFk+cvvtWkk=',-1,1,NULL,NULL,'$2a$10$AKPKHj9orFmf7LtSamvmFO',0,-1,'2024-05-20 09:18:51','2024-05-20 09:18:51','hadesDbSvcUser@172.19.0.1'),(100001,'Tving Admin','$2a$10$xwSCFtHUYyUtuC8lL5Eb4OKDdSqGqaObAY5Ko695b.A1TZL4Bg34i',1,'ChYRcIj+aYtV8tY/uGeur81nZHP9B5gpT4GiTiY3xKA=',-1,1,NULL,NULL,'$2a$10$xwSCFtHUYyUtuC8lL5Eb4O',0,-1,'2024-05-20 09:18:58','2024-05-20 09:18:58','hadesDbSvcUser@172.19.0.1'),(100002,'Tving Admin','$2a$10$XPUSB7Ch97GNSPNO3HqpDOMu.n9cwYnblO8PYSHEjm/OjPoQKBF9y',1,'Uy7u/z0nyBatit26sxiq/M1nZHP9B5gpT4GiTiY3xKA=',-1,1,NULL,NULL,'$2a$10$XPUSB7Ch97GNSPNO3HqpDO',0,-1,'2024-05-20 09:19:02','2024-05-20 09:19:02','hadesDbSvcUser@172.19.0.1'),(100003,'Tving Admin','$2a$10$ypVNqb5vqL1irXwf5SqeX.AUKHO17TYIp9.D9RUipXq.vzngKy0Fe',1,'8iySHD3v7weT02w1or/X181nZHP9B5gpT4GiTiY3xKA=',-1,1,NULL,NULL,'$2a$10$ypVNqb5vqL1irXwf5SqeX.',0,-1,'2024-05-20 09:19:05','2024-05-20 09:19:05','hadesDbSvcUser@172.19.0.1'),(100004,'Daehueng','$2a$10$/nUgPZtjHC65FhzLY9gi7OS/j982nQ2K2UcNPGNf8zbI7OjkyS8yG',1,'XD1GY+XhWnodM+DmIok4y9zNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',-1,1,NULL,NULL,'$2a$10$/nUgPZtjHC65FhzLY9gi7O',0,-1,'2024-05-21 09:55:07','2024-05-21 09:55:07','hadesDbSvcUser@172.19.0.1'),(100005,'Deep Patel','$2a$10$W9tHhUeukA0jNZff774P/.KBUA2wqI7gbIh8mei8uXEM3GUCL6R9e',1,'Nb4u/m2mW+BR4Fjn7vIbjnsQzcCtEsLGZtL1oqhOTOw=',-1,1,'3wnjeyicui7lipurhjdpsca_242908091800','2024-08-29 09:18:24','$2a$10$W9tHhUeukA0jNZff774P/.',0,-1,'2024-05-21 10:06:25','2024-08-29 09:18:24','hadesDbSvcUser@172.19.0.1'),(100006,'Hriday Modi','$2a$10$JtwypjqZYhNJjLLxbTn1feyRUjGUVMOTZNHI1sOJ6x/ZIBX4j4Jz6',1,'GU/zLK5CZMW7T4iGCsO38ozLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',-1,1,'52achnp8ajxauipu3scfe_242105120845','2024-05-21 12:09:08','$2a$10$JtwypjqZYhNJjLLxbTn1fe',0,-1,'2024-05-21 10:06:53','2024-05-21 12:09:08','hadesDbSvcUser@172.19.0.1'),(100007,'test_do_not_use','$2a$10$NGjcwy4.fT3SeGWtZtsEdunslyvO6OkvMLCsZiBuoGIpNdM0rP9x6',1,'8uANQG6hjbOIFsdTmew6w/RmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',-1,1,NULL,NULL,'$2a$10$NGjcwy4.fT3SeGWtZtsEdu',0,-1,'2024-05-21 10:32:56','2024-05-21 10:32:56','hadesDbSvcUser@172.19.0.1'),(100008,'JooyoungAdAccount','$2a$10$w3hbSqoL8cpnNai.uG57uexoWpzTNW0hc7ahrmtM5Cu2nR0L/Kzie',1,'8/xL5lsPDY/yHyuz+Czn19zNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',-1,1,NULL,NULL,'$2a$10$w3hbSqoL8cpnNai.uG57ue',0,-1,'2024-05-21 10:49:58','2024-05-21 10:49:58','hadesDbSvcUser@172.19.0.1'),(100009,'퓨쳐스트림 네트워크 – JooyoungAdAccount-2','$2a$10$o5dzIbmbPTC6lG2uXXoxoe/IwcemnLHnB5rwasKfGZr68/b94zCQK',1,'8kZEwGdRI7OJVDOVKuBH7NzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',-1,1,NULL,NULL,'$2a$10$o5dzIbmbPTC6lG2uXXoxoe',0,-1,'2024-05-21 10:49:58','2024-05-21 10:49:58','hadesDbSvcUser@172.19.0.1'),(100010,'에코마케팅 – Hanna','$2a$10$DJk8L3a3yVIVz7Td0Ja0sucZnx4LA.yGJNzQVhl38Cn0GFHM4oUGe',1,'rHo43Ql4mrE9Qb+xBEnyvdzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',-1,1,NULL,NULL,'$2a$10$DJk8L3a3yVIVz7Td0Ja0su',0,-1,'2024-05-21 10:49:58','2024-05-21 10:49:58','hadesDbSvcUser@172.19.0.1'),(100011,'Vivek read',NULL,1,'YXvkh+3ePKQdx2iwCQ/WMdP3kl78wnxTj3gGpqaMfBY=',-1,1,'52achnp8ajx6azjifvw90_242105105152','2024-05-22 10:51:52',NULL,0,-1,'2024-05-21 10:51:52','2024-05-21 10:51:52','hadesDbSvcUser@172.19.0.1'),(100012,'Vivek write',NULL,1,'NLC3hcm8WG+nSdyA+chNF9P3kl78wnxTj3gGpqaMfBY=',-1,1,'52achnp8ajx6caq4bx3ig_242105105229','2024-05-22 10:52:29',NULL,0,-1,'2024-05-21 10:52:29','2024-05-21 10:52:29','hadesDbSvcUser@172.19.0.1'),(100013,'Vivek write','$2a$10$/XwpWkWiTNU.iTdTjS6Rnu/K8KtjcCC.XnK9F3jNzKcGfHIVdDxOi',1,'pjWwVPG0aRjoHZJ4lzQNQ9P3kl78wnxTj3gGpqaMfBY=',-1,1,'52achnp8ajx6i9ji9c9vx_242105105517','2024-05-22 10:55:17','$2a$10$/XwpWkWiTNU.iTdTjS6Rnu',0,-1,'2024-05-21 10:54:26','2024-05-21 10:55:17','hadesDbSvcUser@172.19.0.1'),(100014,'Rahul Kuvlekar','$2a$10$7mU48M8cXFzbaGHQIxaif.XTIxaAbHqnjryKW2HsHECq.i/Qkw4DO',1,'OA+IVHAtulw2FB7UzuX5Zh5klR+ibPcwa1GdtTGKoAKdqkE+KBk1Ew1JWUWG+i2t',-1,1,'52achnp8ajx7obwmikzxv_242105111504','2024-05-21 11:16:22','$2a$10$7mU48M8cXFzbaGHQIxaif.',0,-1,'2024-05-21 11:11:18','2024-05-21 11:16:22','hadesDbSvcUser@172.19.0.1'),(100015,'Niraj Vadher','$2a$10$W2EWHsEpm7/FjrDL1JFNleyCwC/yrZjbpk2AU08MK6baY1Ang3V7i',1,'AH9nmE2PljkODKBEmb4cx+Mbl+xX8J3Se/KyCqenqSKWuhYcikV2K2FHg3V5i/Li',-1,1,'i88g5yx896x59tq9k2pi_242105111130','2024-05-21 11:12:58','$2a$10$W2EWHsEpm7/FjrDL1JFNle',0,-1,'2024-05-21 11:11:30','2024-05-21 11:12:58','hadesDbSvcUser@172.19.0.1'),(100016,'Parth Patel',NULL,1,'es97IOjni7NWzDfVtPYw8IzLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',-1,1,'i88g5yx896x5bmb1b0vt_242105111144','2024-05-22 11:11:44',NULL,0,-1,'2024-05-21 11:11:44','2024-05-21 11:11:44','hadesDbSvcUser@172.19.0.1'),(100017,'Pavan Gunta','$2a$10$BAgEi8MeJ4t01ZBSpEf/sOkZ1/N.EsaDm5Skx/jfHltlrilnGhvbC',1,'mpEeDY2xfVO2JhVo/31CVIzLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',-1,1,'52achnp8ajx9vv3p69pz4_242105115228','2024-05-21 11:53:08','$2a$10$BAgEi8MeJ4t01ZBSpEf/sO',0,-1,'2024-05-21 11:52:28','2024-05-21 11:53:08','hadesDbSvcUser@172.19.0.1'),(100018,'Test HM','$2a$10$Hf4i8..DpqDO8WxW9L0QseLkFgCjs/jccYCgQFO4IB2ms4zooxrH2',1,'oci3gGFRieJglk0hNChzIm4KH+VNyT1gjz9ayACiS5g=',-1,1,NULL,NULL,'$2a$10$Hf4i8..DpqDO8WxW9L0Qse',0,-1,'2024-05-21 12:12:10','2024-05-21 12:12:10','hadesDbSvcUser@172.19.0.1'),(100019,'rahul kuvlekar',NULL,1,'X0lCvv83P8M/Fopx7oqsGoBeoRwu+xe+flGtwkD8FWA=',-1,1,'i88g5yx896xybnpupaur_242105132805','2024-05-22 13:28:05',NULL,0,-1,'2024-05-21 13:28:05','2024-05-21 13:28:05','hadesDbSvcUser@172.19.0.1'),(100020,'Test Seller','$2a$10$zhGjwjXHoB.Vn5eavD3bKeIuuNlv1v1OpnYsAzPMwnSfwlVZ5yG1S',1,'ATWqvpNuIRwMTkFrboUkBmsyz6/b2eJL6Ouw8SBlLFFdVitfI+Fcgu2C+noYobni',-1,1,NULL,NULL,'$2a$10$zhGjwjXHoB.Vn5eavD3bKe',0,-1,'2024-05-22 04:06:26','2024-05-22 04:06:26','hadesDbSvcUser@172.19.0.1'),(100021,'Dhiraj Gilda','$2a$10$PPkcORa2fIYROghZKnxeQ.eh6nZNH/Qv87wSfSeudrZeHJdWYKYH.',1,'FVXj+o2DnhR8zbc4PTTI8+Mbl+xX8J3Se/KyCqenqSKWuhYcikV2K2FHg3V5i/Li',-1,1,'i88g5yx8974hz2fo3ebm_242205075605','2024-05-22 08:26:54','$2a$10$PPkcORa2fIYROghZKnxeQ.',0,-1,'2024-05-22 07:56:05','2024-05-22 08:26:54','hadesDbSvcUser@172.19.0.1'),(100022,'Ayush Nandanwar','$2a$10$c3AksFfUc5j/57tjE3MaG.DErqlLDv5aWY7WYwNcQI4SgJQUs8JxS',1,'EVbHRtbVqtG4K21p3YDVlPNKanrdrAPOiCbP0QVxDdtuHax/6udH1fEVWWptrbE8',-1,1,'52achnp8axpmsvm7gmk5a_241712125332','2024-12-18 12:53:32','$2a$10$c3AksFfUc5j/57tjE3MaG.',0,-1,'2024-05-22 07:56:31','2024-12-17 12:53:32','hadesDbSvcUser@172.19.0.1'),(100023,'Aman Khatri','$2a$10$N6zl3x6fzvcW.T.93cekQ.dVm6MHZo6u2zZ/LPaaLDGkmEofriOgW',1,'iRKsFpVIZXhdN62KWUikqYzLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',-1,1,'3wnjeyiculap4motpz4xnaw_242910073713','2024-10-29 07:37:46','$2a$10$N6zl3x6fzvcW.T.93cekQ.',0,-1,'2024-05-22 07:56:50','2024-10-29 07:37:46','hadesDbSvcUser@172.19.0.1'),(100024,'Deep Patel',NULL,1,'Nb4u/m2mW+BR4Fjn7vIbjrn7PqYMYEoh+g8FEchJeEldVitfI+Fcgu2C+noYobni',-1,1,'52achnp8ajzb4mxg1nexi_242205083214','2024-05-23 08:32:14',NULL,0,-1,'2024-05-22 08:32:14','2024-05-22 08:32:14','hadesDbSvcUser@172.19.0.1'),(100025,'Kunal','$2a$10$KjlXZmhNopfZ2IJj5BdP9OxUquCqr2vPV1f6fvRGY.annU92jFh5i',1,'S0xpa4j1dflIwXKGDFOXaM1nZHP9B5gpT4GiTiY3xKA=',-1,1,'1emvgwl0axwud1mc6keyqc_241106050743','2024-06-11 05:08:34','$2a$10$KjlXZmhNopfZ2IJj5BdP9O',0,-1,'2024-05-22 09:27:06','2024-06-11 05:08:34','hadesDbSvcUser@172.19.0.1'),(100026,'Sohil','$2a$10$dHhZ.xTaTWFGx/gBWfSyM.2AG1ZlLPGebTGoVir4tbwzD9mdhTZQ6',1,'vTSBLNXzs6N74wxePKCzvE1ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',-1,1,'52achnp8ajzeevvhtcyyi_242205092750','2024-05-22 11:13:01','$2a$10$dHhZ.xTaTWFGx/gBWfSyM.',0,-1,'2024-05-22 09:27:50','2024-05-22 11:13:01','hadesDbSvcUser@172.19.0.1'),(100027,'Aarya Tiwari','$2a$10$ZHl4XUBiUPlRteM2dHDb/eR05u3Y0MHE.m1/FplCoGEcUcvv2aAJK',1,'SYqZQDhRYXFbc1EP4+xTSuMbl+xX8J3Se/KyCqenqSKWuhYcikV2K2FHg3V5i/Li',-1,1,'52achnp8ajzs1o4uchcu8_242205131835','2024-05-22 13:19:56','$2a$10$ZHl4XUBiUPlRteM2dHDb/e',0,-1,'2024-05-22 13:18:35','2024-05-22 13:19:56','hadesDbSvcUser@172.19.0.1'),(100028,'Vivek Patel','$2a$10$60K7OFpyVBzjHylHLaazk.ZqvPsyXtMLsDYxeUCRbjXllEwSP6awC',1,'O9wNBTqUJTT/Ar/uGhDHQozLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',-1,1,'1emvgwl0axwdbvaak51s3y_241006114949','2024-06-10 11:50:14','$2a$10$60K7OFpyVBzjHylHLaazk.',0,-1,'2024-05-23 09:45:53','2024-06-10 11:50:14','hadesDbSvcUser@172.19.0.1'),(100029,'JooyoungAdAccount','$2a$10$x0fbhvT8lRZHwL3hreEByemPztlc4ZDm73YXNCjasDgD7FYLoisEy',1,'8/xL5lsPDY/yHyuz+Czn16qbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$x0fbhvT8lRZHwL3hreEBye',0,-1,'2024-05-23 09:50:59','2024-05-23 09:50:59','hadesDbSvcUser@172.19.0.1'),(100030,'Vivek Patel 2',NULL,1,'O9wNBTqUJTT/Ar/uGhDHQqAp/KJvKniWawNOj6nezliWuhYcikV2K2FHg3V5i/Li',-1,1,'1emvgwl0axkzwytprc5qmy_242405040147','2024-05-25 04:01:47',NULL,0,-1,'2024-05-24 04:01:47','2024-05-24 04:01:47','hadesDbSvcUser@172.19.0.1'),(100031,'Deep Patel',NULL,1,'Nb4u/m2mW+BR4Fjn7vIbjtOijPxGeEKvhKtwbeJHoy3dR0g5Y+nkCYMT79pDd2Rf',-1,1,'1emvgwl0axkzwyx24c70gt_242405040147','2024-05-25 04:01:47',NULL,0,-1,'2024-05-24 04:01:47','2024-05-24 04:01:47','hadesDbSvcUser@172.19.0.1'),(100032,'Rajiv','$2a$10$5gm3rZTOdbJkW.8gHE44u.f1r091EvmQq58wJlbe/3lARmqwVSkh6',1,'krofTW9KA+UcRJuKV/PAL/G7eBhK375QlnQo3lVX23Y=',-1,1,'e2cqp1u31jr1hj8kizofnx_240607141617','2024-07-06 14:16:57','$2a$10$5gm3rZTOdbJkW.8gHE44u.',0,-1,'2024-05-24 14:10:43','2024-07-06 14:16:57','hadesDbSvcUser@172.19.0.1'),(100033,'daeseob lim','$2a$10$IKqsGqigl5JGjMM0DhesiediT5.D89ZcaBmMUz.2XIG96Fv9G20rW',1,'RVerzwui/sG5vUicUvOu4/G7eBhK375QlnQo3lVX23Y=',-1,1,'1emvgwl0axmxg9asld2shq_242705023901','2024-05-27 02:39:17','$2a$10$IKqsGqigl5JGjMM0Dhesie',0,-1,'2024-05-24 14:11:11','2024-05-27 02:39:17','hadesDbSvcUser@172.19.0.1'),(100034,'Kalyani narayanan','$2a$10$z739R6uVQGiMwKbK.9z.B.3NWUZZVHSL8rCt5SjupidK0IYkNQY8i',1,'dyO0YUIUln1CHk0NMRKcvXuxmmgDk9zG+KPVWNh5sIw=',-1,1,'e2cqp1u31g7zcj6uc8p9xh_241706054319','2024-06-17 05:43:53','$2a$10$z739R6uVQGiMwKbK.9z.B.',0,-1,'2024-05-24 14:22:43','2024-06-17 05:43:53','hadesDbSvcUser@172.19.0.1'),(100035,'Shobhit',NULL,1,'/7Fi/Laxw4PeCvMMuzzGyDq7AjEwZQ5hJ0zi/y3L7YQ=',-1,1,'1emvgwl0axla4a25a04whf_242405142331','2024-05-25 14:23:31',NULL,0,-1,'2024-05-24 14:23:31','2024-05-24 14:23:31','hadesDbSvcUser@172.19.0.1'),(100036,'Yunjung Kim','$2a$10$9q97Hw5rCz8.uwoSRIbN..RBpkbQDxnLkQM.J.1MYhtYlvfDttv2G',1,'40TpVJ5d+TVw+pDLahwYYfG7eBhK375QlnQo3lVX23Y=',-1,1,'1emvgwl0axmzdwzleo6f45_242705043655','2024-05-27 05:15:05','$2a$10$9q97Hw5rCz8.uwoSRIbN..',0,-1,'2024-05-24 14:55:29','2024-05-27 05:15:05','hadesDbSvcUser@172.19.0.1'),(100037,'Sangtak Yi','$2a$10$TFz.Joxrms9TpJpr67ztkOeDrAMr3EtrJfP611ZvQZQXAcwgG50O6',1,'lcQacSc+Bue9cvGx//Ar0OgbzgfgprHG9Qq90Dqdxm4=',-1,1,'1emvgwl0axmxj7gaak8qto_242705024400','2024-05-27 02:44:24','$2a$10$TFz.Joxrms9TpJpr67ztkO',0,-1,'2024-05-24 14:56:08','2024-05-27 02:44:24','hadesDbSvcUser@172.19.0.1'),(100038,'Shravan Kankaria','$2a$10$bR.2thE7rwuEMDi9JHiMfu9rLOu2R20awiuWAFer/s.g9jbnEagLG',1,'3Eg3FxJ70TEwyvbt6n/HS1pqhQTE6wyvt07Kl+s9Rjl0uAZJ/LmU/l89OaLLJMo4',-1,1,'1emvgwl0axobdeo7k89nvq_242905052059','2024-05-29 05:29:29','$2a$10$bR.2thE7rwuEMDi9JHiMfu',0,-1,'2024-05-27 06:46:39','2024-05-29 05:29:29','hadesDbSvcUser@172.19.0.1'),(100039,'상탁_테스트','$2a$10$1Z0qvoenKxX1yRXIJd9gZOnlFU.NNRXSZ04HDKzl6sEIBjuhp.GXy',1,'2HFMmXfr0jOEJM3b8idr2Tq7AjEwZQ5hJ0zi/y3L7YQ=',-1,1,'e2cqp1u31fmw1t7nxtw80k_241406003628','2024-06-15 00:36:28','$2a$10$1Z0qvoenKxX1yRXIJd9gZO',0,-1,'2024-05-28 01:26:58','2024-06-14 00:36:28','hadesDbSvcUser@172.19.0.1'),(100040,'Test Seller','$2a$10$tyy5/R8qCflA7J0PR0qFmekAbhoYFAuTNVrNURdIAno80PuOoQI1.',1,'ATWqvpNuIRwMTkFrboUkBtsqCa3yE8G+WWkiF5MM0KA=',-1,1,NULL,NULL,'$2a$10$tyy5/R8qCflA7J0PR0qFme',0,-1,'2024-05-28 05:22:02','2024-05-28 05:22:02','hadesDbSvcUser@172.19.0.1'),(100041,'Test_Sangtak','$2a$10$Y/eOLGqeZyAt6F7GclcMtexG./U1zqc/5kJBQedMyPTWnZl/exv2q',1,'Bu8fieTXnPl5lFtURS2w8qqbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$Y/eOLGqeZyAt6F7GclcMte',0,-1,'2024-05-28 05:27:02','2024-05-28 05:27:02','hadesDbSvcUser@172.19.0.1'),(100042,'Aman Khatri 2','$2a$10$jf4.ShTKJ3dKRLYvW5bdW.dEs.8px0TRsb7KiG3S.1.ep752LzTEa',1,'iRKsFpVIZXhdN62KWUikqaAp/KJvKniWawNOj6nezliWuhYcikV2K2FHg3V5i/Li',-1,1,'e2cqp1u31cy31kk7sx2y9t_243005064014','2024-05-31 06:40:14','$2a$10$jf4.ShTKJ3dKRLYvW5bdW.',0,-1,'2024-05-29 08:50:10','2024-05-30 06:40:14','hadesDbSvcUser@172.19.0.1'),(100043,'Parth Patel','$2a$10$BuIiVLJQhGwGp1Z3CyRZ5eWKF2NU0jw3ak7AqyhC.tLIsYVOu8.XC',1,'ip6edb8io4m+Xiyu1caBSIzLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',-1,1,'e2cqp1u31cy2kqp85vbgfp_243005063724','2024-05-30 06:39:30','$2a$10$BuIiVLJQhGwGp1Z3CyRZ5e',0,-1,'2024-05-30 06:37:24','2024-05-30 06:39:30','hadesDbSvcUser@172.19.0.1'),(100044,'Dhiraj G','$2a$10$pnQBpRv/c.KsKUuOP7uxueUVouuYpgEVuWPpikJAJnDB94wdveJGS',1,'UGGBuzYufw65OLEut2wb+gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31cy7tre35d5a1w_243005070923','2024-05-30 07:10:17','$2a$10$pnQBpRv/c.KsKUuOP7uxue',0,-1,'2024-05-30 07:09:23','2024-05-30 07:10:17','hadesDbSvcUser@172.19.0.1'),(100045,'Rahul K',NULL,1,'OA+IVHAtulw2FB7UzuX5ZhNeS5Oon/satPNNKnFiM6DNZ2Rz/QeYKU+Bok4mN8Sg',-1,1,'e2cqp1u31dohnw0ayc2sk6_240306071256','2024-06-04 07:12:56',NULL,0,-1,'2024-06-03 07:12:56','2024-06-03 07:12:56','hadesDbSvcUser@172.19.0.1'),(100046,'Deep Patel','$2a$10$k93wcgJG0V4KlhlaSYO9veR1J5LpA2phQE2N/TVevQYPEGsG1dpRW',1,'Nb4u/m2mW+BR4Fjn7vIbjjs6MYFKX1sVua1f93wik+i+FC+IGUE0F7ce5H/J/Ayw',-1,1,'52achnp8aks8uzjt4tz65_240306142516','2024-06-03 14:26:12','$2a$10$k93wcgJG0V4KlhlaSYO9ve',0,-1,'2024-06-03 14:25:16','2024-06-03 14:26:13','hadesDbSvcUser@172.19.0.1'),(100047,'Dhiraj Gilda','$2a$10$dUyC9vQAUqsLeiZyBes7c.4ZmSsOFwZYxaWvxU4p.tiz8zFzTF3lm',1,'FVXj+o2DnhR8zbc4PTTI8zAP3wPtztvG28iTEUNXD9UFQ5puelDI29EHArmO7plI',-1,1,'1emvgwl0axsgc1ngdfot29_240406123809','2024-06-04 12:38:34','$2a$10$dUyC9vQAUqsLeiZyBes7c.',0,-1,'2024-06-04 12:38:09','2024-06-04 12:38:34','hadesDbSvcUser@172.19.0.1'),(100048,'Rupal',NULL,1,'Nm9RxQARjt/36tArxRGOU6cLooRr4GLgDi4KcghVwuk=',-1,1,'1emvgwl0axtkvvozgr2xzu_240606054909','2024-06-07 05:49:09',NULL,0,-1,'2024-06-06 05:49:09','2024-06-06 05:49:09','hadesDbSvcUser@172.19.0.1'),(100049,'Rupal','$2a$10$wqtZDyMoy9yUT/5uv.i6xOIHkb8TdSl/5oRLM8kLDzeYYcLX1KZxW',1,'uHNhMOZB4murn94b5ZhDkk1ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',-1,1,'1emvgwl0axtl3bxjic56f0_240606060146','2024-06-06 06:03:30','$2a$10$wqtZDyMoy9yUT/5uv.i6xO',0,-1,'2024-06-06 06:01:46','2024-06-06 06:03:30','hadesDbSvcUser@172.19.0.1'),(100050,'Niraj Vadher','$2a$10$7GVMS37KgpFrZggl3Z29Uepo94k1FBQfRNUDh7E/KXe59WQirT.lC',1,'AH9nmE2PljkODKBEmb4cxwGwXkq1k8mJaYZt7GJUetn974MXwFBaDo9pmlmITPhW',-1,1,'1emvgwl0axtl7byetss5pv_240606060832','2024-06-06 06:18:04','$2a$10$7GVMS37KgpFrZggl3Z29Ue',0,-1,'2024-06-06 06:08:32','2024-06-06 06:18:04','hadesDbSvcUser@172.19.0.1'),(100051,'Rupal',NULL,1,'6NS7Ux4AsWfaZlzu0+oqgA==',-1,1,'1emvgwl0axtoruyqitxs1r_240606094606','2024-06-07 09:46:06',NULL,0,-1,'2024-06-06 09:46:06','2024-06-06 09:46:06','hadesDbSvcUser@172.19.0.1'),(100052,'Nikita','$2a$10$avCb0P3k/5vQ4wk2eNdOUea979BT/d4pYhACIHvZ3INaBMpUIq3d.',1,'6dQaT5/CRsmRjrfrsiDtgk1ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',-1,1,'1emvgwl0axtpd8wlik43qv_240606102218','2024-06-06 10:23:08','$2a$10$avCb0P3k/5vQ4wk2eNdOUe',0,-1,'2024-06-06 10:00:34','2024-06-06 10:23:08','hadesDbSvcUser@172.19.0.1'),(100053,'Dhiraj','$2a$10$Jg../m1AuE1NcDy3zyWbMe.pXzef0nAD2vQzqIWFGJRc2PRuoMon.',1,'ud7rtOJAOcxIpGGSBeNT0+Mbl+xX8J3Se/KyCqenqSKWuhYcikV2K2FHg3V5i/Li',-1,1,'1emvgwl0axtp15h2cggmtl_240606100149','2024-06-06 10:06:03','$2a$10$Jg../m1AuE1NcDy3zyWbMe',0,-1,'2024-06-06 10:01:49','2024-06-06 10:06:03','hadesDbSvcUser@172.19.0.1'),(100054,'Gunjan ','$2a$10$kOYNl333gh6jx70twCwLSOjidC3QjY9rpnrTTyVuVNqqz7M7UN77S',1,'Fjd6PbIIlXc93U2uMMXpTk1ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',-1,1,'e2cqp1u31e9n8hm22gysse_240606123339','2024-06-06 12:34:37','$2a$10$kOYNl333gh6jx70twCwLSO',0,-1,'2024-06-06 10:02:32','2024-06-06 12:34:37','hadesDbSvcUser@172.19.0.1'),(100055,'Vivek',NULL,1,'O9wNBTqUJTT/Ar/uGhDHQi7EUG8ZU5wmiPHUCSiXdSmWuhYcikV2K2FHg3V5i/Li',-1,1,'i88g5yx89aq2devqrfuq_240606132723','2024-06-07 13:27:23',NULL,0,-1,'2024-06-06 13:27:23','2024-06-06 13:27:23','hadesDbSvcUser@172.19.0.1'),(100056,'Siwoo Lee','$2a$10$eGqz9AkSh/55ElBkNhKTPObmDF2Jt8p7EoW.UTVl03ZU4BwXoaS1e',1,'tQS66trAJkCc/eZuVBu3h3npSdWG9tovPlrW1d0hdVQ=',-1,1,'1emvgwl0ay2vbom9djr1vn_242006092831','2024-06-20 09:34:41','$2a$10$eGqz9AkSh/55ElBkNhKTPO',0,-1,'2024-06-10 06:33:22','2024-06-20 09:34:41','hadesDbSvcUser@172.19.0.1'),(100057,'BJ Kang','$2a$10$7M4C35FUYAmii5yVO1mRYeusaWnmib9yxsTnGZMan62EYLBzeKU9a',1,'nZFXXyqrNkPEHAqrf8d1pOo1sH0hpz92RsgopHt8Nwk=',-1,1,'1emvgwl0axwuckgtnwfmto_241106050655','2024-06-11 05:08:16','$2a$10$7M4C35FUYAmii5yVO1mRYe',0,-1,'2024-06-11 05:06:55','2024-06-11 05:08:17','hadesDbSvcUser@172.19.0.1'),(100058,'Hwang seonju','$2a$10$Nx/ezt9WaPoXk88jwrZNou2PI0bPID5erVDudKfdeOX2qXiaGaO6O',1,'ZjQTNuV28WwNsLNbxYb3gu16UonrtERHEPFc8qlj2Bo=',-1,1,'1emvgwl0axwucpuv7c866n_241106050710','2024-06-11 05:08:28','$2a$10$Nx/ezt9WaPoXk88jwrZNou',0,-1,'2024-06-11 05:07:10','2024-06-11 05:08:28','hadesDbSvcUser@172.19.0.1'),(100059,'TVING Internal Test','$2a$10$efw32l5pz0f6Rm/IBtT5QO.ogcrJwMRsbOWDUBB1QDBjkikVaBvAy',1,'pFXmFZW7HMUXq/VjKigo5qqbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$efw32l5pz0f6Rm/IBtT5QO',0,-1,'2024-06-11 05:08:08','2024-06-11 05:08:08','hadesDbSvcUser@172.19.0.1'),(100060,'Moloco Internal Test','$2a$10$Wyl6myeQ3VazeBhZjMh5m.SdGSkRkps83BaJVoTJ90a5ddUJBiMeS',1,'4MQrcvltCfhr8VVMe/EMrKqbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$Wyl6myeQ3VazeBhZjMh5m.',0,-1,'2024-06-11 05:08:08','2024-06-11 05:08:08','hadesDbSvcUser@172.19.0.1'),(100061,'CHOI doeun','$2a$10$VACAlIBtHXRwHT6wDhyZMuRKdJwjyeHrvwKz.7FVZVPANCzOA0dq2',1,'imAwq7zMTFRnIWPpork8HXnpSdWG9tovPlrW1d0hdVQ=',-1,1,'1emvgwl0axwudaqa51hjds_241106050809','2024-06-11 05:09:33','$2a$10$VACAlIBtHXRwHT6wDhyZMu',0,-1,'2024-06-11 05:08:09','2024-06-11 05:09:33','hadesDbSvcUser@172.19.0.1'),(100062,'KIM JIEUN','$2a$10$Ntau3iOko7ZbgTQKpahIYe3m5u.T/RbDi9U9nAPeQj/6v0fKa6PXK',1,'Yet9kV66f8XyOXGs4nk7T3npSdWG9tovPlrW1d0hdVQ=',-1,1,'1emvgwl0axwudkten96aub_241106050837','2024-06-11 05:10:49','$2a$10$Ntau3iOko7ZbgTQKpahIYe',0,-1,'2024-06-11 05:08:37','2024-06-11 05:10:49','hadesDbSvcUser@172.19.0.1'),(100063,'yoonjijang','$2a$10$TxfwiJ/Cz256/km/jM8wQ.JcTAS.HJdRYf0BgJAuWCPPJ095l2RTm',1,'Sp9nS+P9R99vFkB2RCNBl+16UonrtERHEPFc8qlj2Bo=',-1,1,'3wnjeyicuux4sqk8os9t2so_250705072737','2025-05-08 07:27:37','$2a$10$TxfwiJ/Cz256/km/jM8wQ.',0,-1,'2024-06-11 05:08:56','2025-05-07 07:27:37','hadesDbSvcUser@172.19.0.1'),(100064,'BAE aram','$2a$10$.4A08wrr/NGzP1m1G7haEeju26vgWWpITDF2260HuNjATExrrg9vS',1,'PllWEA1+QSDpzpY1Tgl8xA==',-1,1,'1emvgwl0b2hi02bbuzm8bo_251702011412','2025-02-18 01:14:12','$2a$10$.4A08wrr/NGzP1m1G7haEe',0,-1,'2024-06-11 05:09:42','2025-02-17 01:14:12','hadesDbSvcUser@172.19.0.1'),(100065,'AN jeeeun',NULL,1,'xnEfnjuZkC1W+EDtgMei211WK18j4VyC7YL6ehihueI=',-1,1,'3wnjeyicukg6hy61y2msqxh_241210135638','2024-10-13 13:56:38',NULL,0,-1,'2024-06-11 05:12:58','2024-10-12 13:56:38','hadesDbSvcUser@172.19.0.1'),(100066,'DMC미디어','$2a$10$JhRLTUTwHaTRa7oM9kZI0O.qkx3/Pp9MXv0yY6xQbThB/.c181I3C',1,'tv3GFbXZKFSynguPX8A3V6qbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$JhRLTUTwHaTRa7oM9kZI0O',0,-1,'2024-06-11 05:23:08','2024-06-11 05:23:08','hadesDbSvcUser@172.19.0.1'),(100067,'인크로스','$2a$10$jmP7YmCWDAVjWYBqAp9YROaWvmXVWLiDeIJuekPFjP09dSHCMXhFq',1,'R4rgSLeAbJ5+4RC8t/M1iKqbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$jmP7YmCWDAVjWYBqAp9YRO',0,-1,'2024-06-11 05:23:09','2024-06-11 05:23:09','hadesDbSvcUser@172.19.0.1'),(100068,'CJ ENM','$2a$10$Bp9opWLZM8XQkCK6uAhNBOjaIQTwEAvRehgmPpydULwIrlho6RmbC',1,'qIzGZs677OKpd/8v9JooAKqbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$Bp9opWLZM8XQkCK6uAhNBO',0,-1,'2024-06-11 05:23:09','2024-06-11 05:23:09','hadesDbSvcUser@172.19.0.1'),(100069,'Tving_Inhouse','$2a$10$8JTliaWElZXlak1L6rqWluMpM6sOX9APpRMCrST3CZWvBPzhZXJ2W',1,'wUp4njGmfu7MsM1bF2MwhKqbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$8JTliaWElZXlak1L6rqWlu',0,-1,'2024-06-11 05:37:09','2024-06-11 05:37:09','hadesDbSvcUser@172.19.0.1'),(100070,'SJ_TEST','$2a$10$TDV23s.sTR4PLPLgzR3/XOWHlXHyoXDUVs8RVGHF8HxusOedNceIy',1,'8JAK7cDFVbkMhU5K1hnvX58qLvV29S1aVHlz5wzhkpA=',-1,1,'1emvgwl0axwuxz7twt8loa_241106054309','2024-06-11 05:44:04','$2a$10$TDV23s.sTR4PLPLgzR3/XO',0,-1,'2024-06-11 05:39:12','2024-06-11 05:44:04','hadesDbSvcUser@172.19.0.1'),(100071,'lee jieun','$2a$10$5aXXRgavUgMfY28W2cd3tO2NLjMwO7HMmRhAhsdjyQLYSAeZW8omG',1,'jbfBRja70On8qadaDw4riV1WK18j4VyC7YL6ehihueI=',-1,1,'1emvgwl0axwv57j6ysqgnt_241106055524','2024-06-11 06:00:49','$2a$10$5aXXRgavUgMfY28W2cd3tO',0,-1,'2024-06-11 05:55:24','2024-06-11 06:00:49','hadesDbSvcUser@172.19.0.1'),(100072,'ok seunghun','$2a$10$YOWydG8Xpp0559UjH/hglOjZnXXNn5G7styxhzCS.daqvetoFIjeS',1,'z6gK2E+8g/eu2pG+YPyH+PPHHHVMJfDz8t+XF9JzIEo=',-1,1,'1emvgwl0axwv5sbelf2qcc_241106055622','2024-06-11 07:00:59','$2a$10$YOWydG8Xpp0559UjH/hglO',0,-1,'2024-06-11 05:56:22','2024-06-11 07:01:00','hadesDbSvcUser@172.19.0.1'),(100073,'AN JEEEUN','$2a$10$h.58djQM/9YAQJBz0jYKF.e8RvMqdqjjKGDMpCqPwzfubMjoySv3q',1,'wvHCFSKsdyx78Ldp8nkkibCelWXP7fK/9Hc9yMrB3Rw=',-1,1,'1emvgwl0axwvjyhfv3mjim_241106062021','2024-06-11 06:21:46','$2a$10$h.58djQM/9YAQJBz0jYKF.',0,-1,'2024-06-11 06:20:21','2024-06-11 06:21:46','hadesDbSvcUser@172.19.0.1'),(100074,'삼성전자_수정 테스트','$2a$10$Obpdz0lycNbAfbc6nWX8p.SXzi8soPTZOz3hqZT/FCLcMcjZCwwgK',1,'IsIV7AZsoQP0E7wVzx2JKqqbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$Obpdz0lycNbAfbc6nWX8p.',0,-1,'2024-06-13 06:03:26','2024-06-13 06:03:26','hadesDbSvcUser@172.19.0.1'),(100075,'제일기획','$2a$10$U6C8IVLK.wE/.H3Ug85sW./wGALN5MMmdvbv28H9hAusJOzJfYrn2',1,'AqBZ3XyNxjDrUNgdVEE1JaqbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$U6C8IVLK.wE/.H3Ug85sW.',0,-1,'2024-06-13 06:03:26','2024-06-13 06:03:26','hadesDbSvcUser@172.19.0.1'),(100076,'펑타이','$2a$10$BoYL6jgHaR8IoOThMyUSUeb.eEOD2XX8qx8e0pMTSkyDclp7IbiYm',1,'82HUVV4TKsi8+heHnWi1UqqbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$BoYL6jgHaR8IoOThMyUSUe',0,-1,'2024-06-13 06:03:26','2024-06-13 06:03:26','hadesDbSvcUser@172.19.0.1'),(100077,'메조미디어','$2a$10$KiyFZUPdliXqXEIK03bEe.7WlajlsQnwAsYgdozJADWW4m1iUfiUa',1,'vd12irMi1I+95k/LZtMBJqqbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$KiyFZUPdliXqXEIK03bEe.',0,-1,'2024-06-13 06:03:27','2024-06-13 06:03:27','hadesDbSvcUser@172.19.0.1'),(100078,'사용자추',NULL,1,'1Q7605cdKidQlfMQkk3aYbRdv1MCHg0l4UzAhRavNZ2dqkE+KBk1Ew1JWUWG+i2t',-1,1,'1emvgwl0axy79by2wem0zp_241306064718','2024-06-14 06:47:18',NULL,0,-1,'2024-06-13 06:47:18','2024-06-13 06:47:18','hadesDbSvcUser@172.19.0.1'),(100079,'사용자추','$2a$10$rsZBUEu.rAyMdo5S5.9AquC8WlWqZmOz85pnKn1evh/7N7nnFUk3K',1,'Nb4u/m2mW+BR4Fjn7vIbjhGM9d20fnGZ8chUxhvIY0NuHax/6udH1fEVWWptrbE8',-1,1,'e2cqp1u31lj5ydspbrton6_241607084310','2024-07-16 08:43:33','$2a$10$rsZBUEu.rAyMdo5S5.9Aqu',0,-1,'2024-06-13 06:50:29','2024-07-16 08:43:33','hadesDbSvcUser@172.19.0.1'),(100080,'Deep OS Test','$2a$10$RxVl5J5sCWslKZ98vDDaoO.9FlvzfCGYVfe1j405N/aSHaYT5GqgK',1,'Nb4u/m2mW+BR4Fjn7vIbjv+9HMvk8clJYyZqu6yQLy3NZ2Rz/QeYKU+Bok4mN8Sg',-1,1,'e2cqp1u31fjgb66akgfmcn_241306120227','2024-06-13 12:03:42','$2a$10$RxVl5J5sCWslKZ98vDDaoO',0,-1,'2024-06-13 12:02:27','2024-06-13 12:03:42','hadesDbSvcUser@172.19.0.1'),(100081,'Pavan Gunta 2','$2a$10$sUGGUHrsBqutKPB9MoRCs.7K0CE63EI7FScqHGasIBthAz3kctLK2',1,'mpEeDY2xfVO2JhVo/31CVKAp/KJvKniWawNOj6nezliWuhYcikV2K2FHg3V5i/Li',-1,1,'e2cqp1u31fjnhmw8pitae7_241306124612','2024-06-13 12:46:32','$2a$10$sUGGUHrsBqutKPB9MoRCs.',0,-1,'2024-06-13 12:46:12','2024-06-13 12:46:32','hadesDbSvcUser@172.19.0.1'),(100082,'Hriday 2',NULL,1,'GU/zLK5CZMW7T4iGCsO38qAp/KJvKniWawNOj6nezliWuhYcikV2K2FHg3V5i/Li',-1,1,'e2cqp1u31fo9potiw5l91g_241406053906','2024-06-15 05:39:06',NULL,0,-1,'2024-06-14 05:39:06','2024-06-14 05:39:06','hadesDbSvcUser@172.19.0.1'),(100083,'TVING_QA_Practice','$2a$10$gZvKVLPF18OII767T5q0OutADuW1Dfrm2bbwQVUaWWbA/PWMnL/eC',1,'CeqJ9L63NkRnRl7ZasrYm6qbjXVfoOViBhZJtrcvxYI=',-1,1,NULL,NULL,'$2a$10$gZvKVLPF18OII767T5q0Ou',0,-1,'2024-06-14 08:00:06','2024-06-14 08:00:06','hadesDbSvcUser@172.19.0.1'),(100084,'Parth Patel',NULL,1,'ip6edb8io4m+Xiyu1caBSGNi/aBX/MmkB56Ua29L6mMaEuXozxmytmKkUVCPQoi+',-1,1,'e2cqp1u31fp9tudbb8va6x_241406091910','2024-06-15 09:19:10',NULL,0,-1,'2024-06-14 09:19:10','2024-06-14 09:19:10','hadesDbSvcUser@172.19.0.1'),(100085,'Hriday Modi',NULL,1,'GU/zLK5CZMW7T4iGCsO38i7EUG8ZU5wmiPHUCSiXdSmWuhYcikV2K2FHg3V5i/Li',-1,1,'e2cqp1u31g7tz4y02708z1_241706051035','2024-06-18 05:10:35',NULL,0,-1,'2024-06-17 05:10:35','2024-06-17 05:10:35','hadesDbSvcUser@172.19.0.1'),(100086,'Hriday',NULL,1,'GU/zLK5CZMW7T4iGCsO38imCZ2OIfqiwDA09nPkXC86WuhYcikV2K2FHg3V5i/Li',-1,1,'e2cqp1u31g7u1nyr5x56cy_241706051101','2024-06-18 05:11:01',NULL,0,-1,'2024-06-17 05:11:01','2024-06-17 05:11:01','hadesDbSvcUser@172.19.0.1'),(100087,'Hriday','$2a$10$y7uCwHekj1f7fUWeGXuRsOzK6v3g3T3iJ.m8SmyofOamVseCwKDWa',1,'GU/zLK5CZMW7T4iGCsO38sjng6bhklAV5aasIkXAiSaWuhYcikV2K2FHg3V5i/Li',-1,1,'e2cqp1u31g7u6emi8oh18f_241706051149','2024-06-17 05:13:50','$2a$10$y7uCwHekj1f7fUWeGXuRsO',0,-1,'2024-06-17 05:11:49','2024-06-17 05:13:50','hadesDbSvcUser@172.19.0.1'),(100088,'BJ Kang','$2a$10$/nQNJBjrth415padHH.QiueJTY8vuenQf1sU4Z40GLtoUOwXoTwdO',1,'eOSlayrcqtQzyBjvlD4Oajq7AjEwZQ5hJ0zi/y3L7YQ=',-1,1,'e2cqp1u31g7vifnjfrxbtv_241706051957','2024-06-17 05:20:42','$2a$10$/nQNJBjrth415padHH.Qiu',0,-1,'2024-06-17 05:19:57','2024-06-17 05:20:42','hadesDbSvcUser@172.19.0.1'),(100089,'KIM JIEUN TEST','$2a$10$7p1uq.DVK02gn8252hfgde5mZ3rJx3H/ukiWrh8jVoxWjf3Pf5XVy',1,'VWTOFk7X9JpDkT749QwaQE5wI/mBxw1VFd8I6QSWkVM=',-1,1,'e2cqp1u31g7w74b2qtd1fi_241706052408','2024-06-17 05:26:15','$2a$10$7p1uq.DVK02gn8252hfgde',0,-1,'2024-06-17 05:24:08','2024-06-17 05:26:15','hadesDbSvcUser@172.19.0.1'),(100090,'Deep Patel External Test','$2a$10$M3pyZjjmBj.siVYQg/roK.PvUQzNBFNGJVcqW1gnRB79rhoQi8FB2',1,'anH1bgsUJrE13vhHKtXLD/vKIqRF3A1gJvk7QnxeV+TdR0g5Y+nkCYMT79pDd2Rf',-1,1,'e2cqp1u31g8gtg1vg18k9b_241706072947','2024-06-17 07:30:49','$2a$10$M3pyZjjmBj.siVYQg/roK.',0,-1,'2024-06-17 07:29:47','2024-06-17 07:30:49','hadesDbSvcUser@172.19.0.1'),(100091,'Ayush','$2a$10$EHORoJ/u26UFBiVHoVkxUuVua0u9TJrLyBfaXtUtk.kXvndbliqGW',1,'EVbHRtbVqtG4K21p3YDVlBL22621Ddeqk3t9L//1hf50uAZJ/LmU/l89OaLLJMo4',-1,1,'e2cqp1u31g8uicnihi0vtx_241706085313','2024-06-17 08:53:39','$2a$10$EHORoJ/u26UFBiVHoVkxUu',0,-1,'2024-06-17 08:10:20','2024-06-17 08:53:39','hadesDbSvcUser@172.19.0.1'),(100092,'Ayush 2','$2a$10$ExCJ.nZErZZh0spBYoqxUeel61c1VcuJLbRrfZiyGL9OsT.KzeSJq',1,'EVbHRtbVqtG4K21p3YDVlB2MNlNPNxzdfVkBELjZ2U50uAZJ/LmU/l89OaLLJMo4',-1,1,'e2cqp1u31g8s7nr51k38nh_241706083913','2024-06-17 08:39:55','$2a$10$ExCJ.nZErZZh0spBYoqxUe',0,-1,'2024-06-17 08:17:37','2024-06-17 08:39:55','hadesDbSvcUser@172.19.0.1'),(100093,'Test',NULL,1,'L3xahzmziP/0ONyqlw6Jo9P3kl78wnxTj3gGpqaMfBY=',-1,1,'e2cqp1u31g8r719ke5bdj2_241706083301','2024-06-18 08:33:01',NULL,0,-1,'2024-06-17 08:33:01','2024-06-17 08:33:01','hadesDbSvcUser@172.19.0.1'),(100094,'Deep',NULL,1,'Nb4u/m2mW+BR4Fjn7vIbjkJCpsDroum1n3lznHboU4enC6KEa+Bi4A4uCnIIVcLp',-1,1,'e2cqp1u31g8rdq82f46ag4_241706083409','2024-06-18 08:34:09',NULL,0,-1,'2024-06-17 08:34:09','2024-06-17 08:34:09','hadesDbSvcUser@172.19.0.1'),(100095,'Vivek',NULL,1,'/rgKWq9CAVWvwwVKR5bgHdP3kl78wnxTj3gGpqaMfBY=',-1,1,'e2cqp1u31g8rgg2umsilps_241706083436','2024-06-18 08:34:36',NULL,0,-1,'2024-06-17 08:34:36','2024-06-17 08:34:36','hadesDbSvcUser@172.19.0.1'),(100096,'Deep',NULL,1,'anH1bgsUJrE13vhHKtXLDxn6Vz27rkCoftn+hCzAOl7qNbB9Iac/dkbIKKR7fDcJ',-1,1,'e2cqp1u31g8u6os6p4wp3h_241706085114','2024-06-18 08:51:14',NULL,0,-1,'2024-06-17 08:51:14','2024-06-17 08:51:14','hadesDbSvcUser@172.19.0.1'),(100097,'퓨쳐스트림 네트워크 – JooyoungAdAccount-3','$2a$10$5fUqrUaco2k5sGGVpNs9ruj8KDikJqaxK76nxkXSI8.v0PuHRRVE.',1,'0m76yqUl5lzWSJpYIaCu09zNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',-1,1,NULL,NULL,'$2a$10$5fUqrUaco2k5sGGVpNs9ru',0,-1,'2024-06-17 10:04:14','2024-06-17 10:04:14','hadesDbSvcUser@172.19.0.1'),(100098,'이시우 PRO','$2a$10$PxX8p/7wdJ2vOcAbEE07NOx.phpEQRHWpTGw4pwRcLDmz89NQqqhe',1,'1wo3N7MpUOLDw2Z82UsOVzOhbILCrZkGDzUiwLveYsY=',-1,1,'1emvgwl0ay2vc0w2yo0fnq_242006092906','2024-06-21 09:29:06','$2a$10$PxX8p/7wdJ2vOcAbEE07NO',0,-1,'2024-06-18 08:01:17','2024-06-20 09:29:06','hadesDbSvcUser@172.19.0.1'),(100099,'최도은 읽기','$2a$10$nN6duXsJUTU.F2nTwYmxYOFp8ufbXyID1IFXtz4AZHVKa8STHpqm.',1,'v71V9JqVyxxUi15hBpT9wTq7AjEwZQ5hJ0zi/y3L7YQ=',-1,1,'52achnp8alr2a0ctg8ypn_241806080127','2024-06-18 08:05:18','$2a$10$nN6duXsJUTU.F2nTwYmxYO',0,-1,'2024-06-18 08:01:27','2024-06-18 08:05:18','hadesDbSvcUser@172.19.0.1'),(100100,'Bikash','$2a$10$t5nPPZQxI/zR20mn82ZNV.Xy/KFOrTYXhs4qeWLguPNvlSI5z5f1K',1,'xLHBqhmNZcZeA6sdSEw4Qjxf5yR0PYqMvPW02TuGmXI=',-1,1,'1emvgwl0ay257oswdu2hvr_241906065725','2024-06-20 03:47:02','$2a$10$t5nPPZQxI/zR20mn82ZNV.',0,-1,'2024-06-19 06:57:25','2024-06-20 03:47:03','hadesDbSvcUser@172.19.0.1'),(100101,'임대섭',NULL,1,'JoIEm6guWh4YXBRIAro+791HSDlj6eQJgxPv2kN3ZF8=',-1,1,'1emvgwl0ay2vo6me7vz35e_242006094941','2024-06-21 09:49:41',NULL,0,-1,'2024-06-20 07:57:55','2024-06-20 09:49:41','hadesDbSvcUser@172.19.0.1'),(100102,'시우님 2','$2a$10$cFkDwq/qNQWamRaVNv86gecRPUHLzUHwir3eudDCE8nWazKOxdcaa',1,'mT0wuKEqzvR6Q+lTTy9Zbeo1sH0hpz92RsgopHt8Nwk=',-1,1,'1emvgwl0ay2u6et4of2198_242006081840','2024-06-20 08:29:29','$2a$10$cFkDwq/qNQWamRaVNv86ge',0,-1,'2024-06-20 08:18:40','2024-06-20 08:29:29','hadesDbSvcUser@172.19.0.1'),(100103,'AD_ACCOUNT_DEV','$2a$10$KjYckZ0BsB11zik/ZYFR0O0Kp48vZycZ3NvrSsY2KZSgjUQ.ansXG',1,'EAZDUJn8t8GFeKPXztK6L9zNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',-1,1,NULL,NULL,'$2a$10$KjYckZ0BsB11zik/ZYFR0O',0,-1,'2024-06-21 06:42:41','2024-06-21 06:42:41','hadesDbSvcUser@172.19.0.1'),(100104,'Vipul','$2a$10$IsiE8McqxIiDgrzbZSGd7O.nNBQYk6HcnpMMTNlxLYKMZ0qx3Ygs2',1,'lHF8ngYPfKhf2WjMEhdzWc1nZHP9B5gpT4GiTiY3xKA=',-1,1,'3wnjeyicul3b3qgm6pxqm22_242510062127','2024-10-25 06:22:22','$2a$10$IsiE8McqxIiDgrzbZSGd7O',0,-1,'2024-07-08 05:01:50','2024-10-25 06:22:22','hadesDbSvcUser@172.19.0.1'),(100105,'Anand','$2a$10$olPt2oKK5bazsRl0U3kfyerZurpZd2bj4RITLRs9sEggfIjFSCrNC',1,'Bkk2sdeZ18F+HELx4BV9YzV+VrgnV/LtlbckFxkQlzU=',-1,1,'e2cqp1u31k2jd04g0odmx8_240807081816','2024-07-08 08:19:03','$2a$10$olPt2oKK5bazsRl0U3kfye',0,-1,'2024-07-08 08:18:16','2024-07-08 08:19:04','hadesDbSvcUser@172.19.0.1'),(100106,'Niraj Vadher ','$2a$10$zsHuHSsCyVYj8cvOn1CGx.9rVw12GooW9mw4Fc3oitY3nb9zgsZbO',1,'AH9nmE2PljkODKBEmb4cxwvzWAYhRYPS7rtzTRG1uk++FC+IGUE0F7ce5H/J/Ayw',-1,1,'52achnp8axpne7imtsh3q_241712130334','2024-12-18 13:03:34','$2a$10$zsHuHSsCyVYj8cvOn1CGx.',0,-1,'2024-07-11 07:12:30','2024-12-17 13:03:34','hadesDbSvcUser@172.19.0.1'),(100107,'Testing Seller Monitor','$2a$10$sfW390dEsSsHqpOi9tYtVeej3.9av0mbRCgR6yYkajnF.TCZ.Ix2y',1,'dvNQvDbKgZJw7YC1muZjyhOh/nXGByR3DX0roWXWSzY=',-1,1,NULL,NULL,'$2a$10$sfW390dEsSsHqpOi9tYtVe',0,-1,'2024-07-12 07:08:50','2024-07-12 07:08:50','hadesDbSvcUser@172.19.0.1'),(100108,'Ayush Nandanwar ','$2a$10$HY0cbNinnVngFlOXK0R6keDyvi6KYof3yXfwTAmQMpkrAwXoY1yHS',1,'EVbHRtbVqtG4K21p3YDVlISlDTxpUE6hCwic2MoxNjP3fv6hqnqX00RZPnL77VpJ',-1,1,'e2cqp1u31lkjn5qhkqjpwx_241607134556','2024-07-16 13:47:04','$2a$10$HY0cbNinnVngFlOXK0R6ke',0,-1,'2024-07-16 13:45:56','2024-07-16 13:47:04','hadesDbSvcUser@172.19.0.1'),(100109,'Hriday','$2a$10$GKBSL/Mpl0tGMmLZxG3wr..haVpnM3ufmV6X1JImuvdrs7OHhgMZW',1,'GU/zLK5CZMW7T4iGCsO38u0da5vMKVBtPPLY4Vcvp5b3fv6hqnqX00RZPnL77VpJ',-1,1,'e2cqp1u31loosk69w91rxj_241707045448','2024-07-17 04:55:19','$2a$10$GKBSL/Mpl0tGMmLZxG3wr.',0,-1,'2024-07-17 04:54:48','2024-07-17 04:55:19','hadesDbSvcUser@172.19.0.1'),(100110,'Shailendra Singh','$2a$10$8TNhflkrx6Acevr9SzEMB.ziLNkKR6Dk0K78LPR4kYUdNATCQY3ta',1,'6QqXBiefQ3/t/DMdptzNcXsQzcCtEsLGZtL1oqhOTOw=',-1,1,'3wnjeyicuim23wu1e46zkuo_240609073808','2024-09-06 07:38:45','$2a$10$8TNhflkrx6Acevr9SzEMB.',0,-1,'2024-07-22 09:20:02','2024-09-06 07:38:45','hadesDbSvcUser@172.19.0.1'),(100111,'QA Yuvaraj','$2a$10$9HXUyXQ6TC6VChEK64NUuOPs7SaPGZT2k1ipaHMHQ8Oi9NlcgksuK',1,'BMoE0sD9eYpdZF7dUTY+zpZvZvQfVhvLv4S9mpavf7E=',-1,1,'e2cqp1u31n7eo7cqyl2nkl_242507125827','2024-07-25 13:00:13','$2a$10$9HXUyXQ6TC6VChEK64NUuO',0,-1,'2024-07-25 12:58:27','2024-07-25 13:00:13','hadesDbSvcUser@172.19.0.1'),(100112,'QA Rajesh','$2a$10$z9s4jZCDFMlklwVSyEAlJuhFSnC0MTXBp9walBwS7XpC5fKwq.oMi',1,'sxjmQ1OsSAFnY1p1jDo/5g2hWFFkg7YeFxsHgi1/t6U=',-1,1,'e2cqp1u31n7f799snpka1k_242507130140','2024-07-25 13:02:45','$2a$10$z9s4jZCDFMlklwVSyEAlJu',0,-1,'2024-07-25 13:01:40','2024-07-25 13:02:45','hadesDbSvcUser@172.19.0.1'),(100113,'QA Ankit','$2a$10$AwCD0bs9C66x0rfyuly3AO1AeYA1sU7tPP0q0m.aWuiU6YpGixV.G',1,'gZOwtaLRAq6HT+rRSu7zEy1lYs7KYqJ4t6g+t8En6RM=',-1,1,'e2cqp1u31n7fa4ixfqof6j_242507130210','2024-07-25 13:06:02','$2a$10$AwCD0bs9C66x0rfyuly3AO',0,-1,'2024-07-25 13:02:10','2024-07-25 13:06:02','hadesDbSvcUser@172.19.0.1'),(100114,'Vihang Supare','$2a$10$lisfAui8t1s72Wj9FO1ljOVmAyWE7/00tATDEKe6VpKiv.rVtxpqq',1,'kBKdVhKA1z6w2qrH1o8XX01ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',-1,1,'e2cqp1u31o2eeeqfqv8yfb_243007061715','2024-07-30 06:17:43','$2a$10$lisfAui8t1s72Wj9FO1ljO',0,-1,'2024-07-30 06:17:15','2024-07-30 06:17:43','hadesDbSvcUser@172.19.0.1'),(100115,'Test Seller 2','$2a$10$4dAao1iW6.a3Qu.0twMi6.V72T8F2PTOzag0ASzRr5l8DqM0JKZMm',1,'qdJQkxylVtAIqVx6I598oPRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',-1,1,NULL,NULL,'$2a$10$4dAao1iW6.a3Qu.0twMi6.',0,-1,'2024-07-30 10:43:27','2024-07-30 10:43:27','hadesDbSvcUser@172.19.0.1'),(100116,'Test Seller 2 Testing','$2a$10$C9gwsYpqhdNXoHh7Tx3L7uEPn1uk.HMZn0BGb7WGBRzJ9QciK7uEq',1,'Onp59GLQy+eqRVtmPHqYffRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',-1,1,NULL,NULL,'$2a$10$C9gwsYpqhdNXoHh7Tx3L7u',0,-1,'2024-07-30 13:20:20','2024-07-30 13:20:20','hadesDbSvcUser@172.19.0.1'),(100117,'Test Seller 4 Testing','$2a$10$dDbBHBC.zVW0zhf.mb46reOAUgxXR.6wP/cfWTTpvgrJEnFf/bBtO',1,'5dYfvbtTLOzzaRJNy3H6svRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',-1,1,NULL,NULL,'$2a$10$dDbBHBC.zVW0zhf.mb46re',0,-1,'2024-07-30 13:28:09','2024-07-30 13:28:09','hadesDbSvcUser@172.19.0.1'),(100118,'Test Seller 5 Testing','$2a$10$fa9xVy8WGt0nFxni3eKfpOJlfCR7biM1DUuOtAferkUVsFz.QV0MC',1,'EGMkz4S1R01/YRltzbU61/RmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',-1,1,NULL,NULL,'$2a$10$fa9xVy8WGt0nFxni3eKfpO',0,-1,'2024-07-30 13:35:57','2024-07-30 13:35:57','hadesDbSvcUser@172.19.0.1'),(100119,'Test Seller 6 Testing','$2a$10$tF.kLh/WRcvrZngGJ2fcR.xg0NavOi4nvExr5LI8b5925TK634mdG',1,'RCwaL6RAwX/AUgZZNAu05vRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',-1,1,NULL,NULL,'$2a$10$tF.kLh/WRcvrZngGJ2fcR.',0,-1,'2024-07-30 13:55:43','2024-07-30 13:55:43','hadesDbSvcUser@172.19.0.1'),(100120,'abc123',NULL,1,'QByKngwVqZoD6pdoXH6NCV1WK18j4VyC7YL6ehihueI=',-1,1,'e2cqp1u31o8tmz643wty7p_243107054619','2024-08-01 05:46:19',NULL,0,-1,'2024-07-31 05:46:19','2024-07-31 05:46:19','hadesDbSvcUser@172.19.0.1'),(100121,'QA',NULL,1,'ohbArri3woz2uzR+AmwBE11WK18j4VyC7YL6ehihueI=',-1,1,'e2cqp1u31o8trauuearkhk_243107054703','2024-08-01 05:47:03',NULL,0,-1,'2024-07-31 05:47:03','2024-07-31 05:47:03','hadesDbSvcUser@172.19.0.1'),(100122,'QaTester',NULL,1,'Z/UaGRja3IbvAG7T6EaokN1HSDlj6eQJgxPv2kN3ZF8=',-1,1,'e2cqp1u31o8u8rhlhhwgvz_243107055000','2024-08-01 05:50:00',NULL,0,-1,'2024-07-31 05:50:00','2024-07-31 05:50:00','hadesDbSvcUser@172.19.0.1'),(100123,'test',NULL,1,'Fx5x7KZ7RXgo2Wt42FWDPQ==',-1,1,'e2cqp1u31o8uejuchfm3k2_243107055059','2024-08-01 05:50:59',NULL,0,-1,'2024-07-31 05:50:59','2024-07-31 05:50:59','hadesDbSvcUser@172.19.0.1'),(100124,'tester',NULL,1,'fxExmbWfI3fDfwMvlkbeE91HSDlj6eQJgxPv2kN3ZF8=',-1,1,'e2cqp1u31o8veg9qigm8wo_243107055704','2024-08-01 05:57:04',NULL,0,-1,'2024-07-31 05:57:04','2024-07-31 05:57:04','hadesDbSvcUser@172.19.0.1'),(100125,'tester',NULL,1,'1BBYAgiEsILgh6reZJHNiV1WK18j4VyC7YL6ehihueI=',-1,1,'e2cqp1u31o8weos59rfzxn_243107060312','2024-08-01 06:03:12',NULL,0,-1,'2024-07-31 06:03:12','2024-07-31 06:03:12','hadesDbSvcUser@172.19.0.1'),(100126,'Test Seller 7 Testing','$2a$10$En4xIW4vqDgdhYptwJW6O.p4A9QY6FDgsFbv50bwsO/GieMDmxPQe',1,'EPbEzYos+zrtOrOaG6OfT/RmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',-1,1,NULL,NULL,'$2a$10$En4xIW4vqDgdhYptwJW6O.',0,-1,'2024-07-31 06:05:57','2024-07-31 06:05:57','hadesDbSvcUser@172.19.0.1'),(100127,'Test Seller 8 Testing','$2a$10$nvjJ4mpIjSkZVGWfDIuTs.IKHoOgqqu3xZ1k.SsYIS6R0gKhrvFtS',1,'+rVX9IH7J+DdIbPkseqh1fRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',-1,1,NULL,NULL,'$2a$10$nvjJ4mpIjSkZVGWfDIuTs.',0,-1,'2024-07-31 06:09:39','2024-07-31 06:09:39','hadesDbSvcUser@172.19.0.1'),(100128,'Test Seller 9 Testing','$2a$10$/EyWHHcVQ/LKgmGprIAtzu5z6RwFBiqmdPGUF6Q124Lul/iF938HC',1,'KXzsi4cr4vHL1jgF+e5YFPRmLN9tdAYLRYGyzRMbzp/dR0g5Y+nkCYMT79pDd2Rf',-1,1,NULL,NULL,'$2a$10$/EyWHHcVQ/LKgmGprIAtzu',0,-1,'2024-07-31 06:13:25','2024-07-31 06:13:25','hadesDbSvcUser@172.19.0.1'),(100129,'testing',NULL,1,'lJjEW+ZJxJCKpedAC2qyFN1HSDlj6eQJgxPv2kN3ZF8=',-1,1,'e2cqp1u31o92nulf7mxiok_243107064118','2024-08-01 06:41:18',NULL,0,-1,'2024-07-31 06:41:18','2024-07-31 06:41:18','hadesDbSvcUser@172.19.0.1'),(100130,'QA Tester',NULL,1,'p0/f2PJkSWD6CUOKrdW8XV1WK18j4VyC7YL6ehihueI=',-1,1,'e2cqp1u31o93m1vju1r46m_243107064706','2024-08-01 06:47:06',NULL,0,-1,'2024-07-31 06:47:06','2024-07-31 06:47:06','hadesDbSvcUser@172.19.0.1'),(100131,'Test Seller 10','$2a$10$JvvCG2W9JDkkMnT7S.AyGOJrLkT1syElDEot6LAIqEDxRJ6rAHrK.',1,'DKsvIkYRY/VgTh1ZUH/mHdzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',-1,1,NULL,NULL,'$2a$10$JvvCG2W9JDkkMnT7S.AyGO',0,-1,'2024-07-31 07:22:37','2024-07-31 07:22:37','hadesDbSvcUser@172.19.0.1'),(100132,'Test Seller 11','$2a$10$4uJH4fBS4JdDXVuXXYxA..FnMJqkbh7/e2Zuv8bdOUYrgpi0P6llu',1,'P7d1UH9lnbLMMzvZBxSRCdzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',-1,1,NULL,NULL,'$2a$10$4uJH4fBS4JdDXVuXXYxA..',0,-1,'2024-07-31 07:24:37','2024-07-31 07:24:37','hadesDbSvcUser@172.19.0.1'),(100133,'API Test Seller 1 Testing','$2a$10$5NUyoQM0JCvt0XeeOBudG.KnGCyoink1R5NFEMcT1ObqdNkYYBMK.',1,'/TMDx0yJMdsmtM6CgRWXXgkYhIZm9pvv2mWm4vYsBgE=',-1,1,NULL,NULL,'$2a$10$5NUyoQM0JCvt0XeeOBudG.',0,-1,'2024-07-31 09:12:24','2024-07-31 09:12:24','hadesDbSvcUser@172.19.0.1'),(100134,'API Test Seller 2 Testing','$2a$10$R4qNY54QKyOaLP9lLWvXkOXaEgF.uzPHXptd5c1ThknvrT542Oez2',1,'o8Yfknhcn7NHs0F37OCQPAkYhIZm9pvv2mWm4vYsBgE=',-1,1,NULL,NULL,'$2a$10$R4qNY54QKyOaLP9lLWvXkO',0,-1,'2024-08-07 08:11:01','2024-08-07 08:11:01','hadesDbSvcUser@172.19.0.1'),(100135,'API Test Seller 3 Testing','$2a$10$RyRsiH7tew7EFHVeh.Fiw.5W//am5q0OPe4wOnCebeRlDx/8RqmzC',1,'9Fl6jwNDip9zZ+qTkKSUSAkYhIZm9pvv2mWm4vYsBgE=',-1,1,NULL,NULL,'$2a$10$RyRsiH7tew7EFHVeh.Fiw.',0,-1,'2024-08-07 08:16:35','2024-08-07 08:16:35','hadesDbSvcUser@172.19.0.1'),(100136,'Nikita',NULL,1,'/FNAbY7LE9g3vIKW28sP+acLooRr4GLgDi4KcghVwuk=',-1,1,'e2cqp1u31pl19kze0q5smw_240708140232','2024-08-08 14:02:32',NULL,0,-1,'2024-08-07 14:02:32','2024-08-07 14:02:32','hadesDbSvcUser@172.19.0.1'),(100137,'Shravan','$2a$10$6NG8j5f5QnRTz4tuMO0UYuSHiMIM7iXUJ6X6nC7Bkp7zFpVnRp.KS',1,'3Eg3FxJ70TEwyvbt6n/HS3sQzcCtEsLGZtL1oqhOTOw=',-1,1,'1emvgwl0b1xfsh4if566qb_251701114535','2025-01-17 11:46:21','$2a$10$6NG8j5f5QnRTz4tuMO0UYu',0,-1,'2024-08-09 09:52:17','2025-01-17 11:46:21','hadesDbSvcUser@172.19.0.1'),(100138,'Deepankal','$2a$10$TYcLOK3xKWMItU1/Vi7kHuNFvPP.4SsCbKbc.iRtUfCtI8JHjVJvu',1,'HIkqI6o6mboQNlI9DnX1WtP3kl78wnxTj3gGpqaMfBY=',-1,1,'1emvgwl0ayzpadllhypljp_240908095238','2024-08-09 10:10:59','$2a$10$TYcLOK3xKWMItU1/Vi7kHu',0,-1,'2024-08-09 09:52:38','2024-08-09 10:11:00','hadesDbSvcUser@172.19.0.1'),(100139,'API Test Seller 4 Testing','$2a$10$7JK9BQilLh/xorZRsToTCua7rGg8u894941/NIdPN07T.PjkIvTEG',1,'7wAVZiHmJmgZNtsiGdP9+QkYhIZm9pvv2mWm4vYsBgE=',-1,1,NULL,NULL,'$2a$10$7JK9BQilLh/xorZRsToTCu',0,-1,'2024-08-12 05:47:15','2024-08-12 05:47:15','hadesDbSvcUser@172.19.0.1'),(100140,'API Test Seller 5 Testing','$2a$10$fyBdWaBi/w7R/mRdkGgSPeYvrVHUkc5gWDrZ31i7sjV9Eq8nYsN4W',1,'d1gCNXnOTq7qLmDAIYxJKwkYhIZm9pvv2mWm4vYsBgE=',-1,1,NULL,NULL,'$2a$10$fyBdWaBi/w7R/mRdkGgSPe',0,-1,'2024-08-12 05:51:19','2024-08-12 05:51:19','hadesDbSvcUser@172.19.0.1'),(100141,'HImanshu','$2a$10$Ebz.eE7zg6SMwPtSYWd/zeCmIWZP8syt/Od1LyK451xm9NQ4TLP6e',1,'O84XRAvqGVw3OSC23D+oPT/6DYepJztmk8RXaS2cVqQ=',-1,1,'e2cqp1u31qmmdzlsf5ure4_241308072755','2024-08-13 07:28:50','$2a$10$Ebz.eE7zg6SMwPtSYWd/ze',0,-1,'2024-08-13 07:27:55','2024-08-13 07:28:51','hadesDbSvcUser@172.19.0.1'),(100142,'test',NULL,1,'1ejdDPHTXP9oyouyy/cZPt1HSDlj6eQJgxPv2kN3ZF8=',-1,1,'e2cqp1u31s3vdflp0qjzll_242108100915','2024-08-22 10:09:15',NULL,0,-1,'2024-08-21 10:09:15','2024-08-21 10:09:15','hadesDbSvcUser@172.19.0.1'),(100143,'TestQA',NULL,1,'T3u7eQHbu1WM4c+Xw/LRRTq7AjEwZQ5hJ0zi/y3L7YQ=',-1,1,'e2cqp1u31s48h7lxwg6uyl_242108112906','2024-08-22 11:29:06',NULL,0,-1,'2024-08-21 11:29:06','2024-08-21 11:29:06','hadesDbSvcUser@172.19.0.1'),(100144,'bv v',NULL,1,'j5e83sp0io+JJqTCmBI12Q==',-1,1,'e2cqp1u31s48ufsuqwvznx_242108113121','2024-08-22 11:31:21',NULL,0,-1,'2024-08-21 11:31:21','2024-08-21 11:31:21','hadesDbSvcUser@172.19.0.1'),(100145,'QATestingX7AX',NULL,1,'7oAh7GvD/kEn++DHKVywo11WK18j4VyC7YL6ehihueI=',-1,1,'e2cqp1u31s4dzhyact5bln_242108120240','2024-08-22 12:02:40',NULL,0,-1,'2024-08-21 12:02:40','2024-08-21 12:02:40','hadesDbSvcUser@172.19.0.1'),(100146,'QATestingA4ND',NULL,1,'SlfQ8mu9ZfIE40xLvCsp1AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s4elhqn5o7fns_242108120624','2024-08-22 12:06:24',NULL,0,-1,'2024-08-21 12:06:24','2024-08-21 12:06:24','hadesDbSvcUser@172.19.0.1'),(100147,'QATestingHMJJ',NULL,1,'2OGnNhGlDE3JSof9OaiwzgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s4eqafwcatezb_242108120712','2024-08-22 12:07:12',NULL,0,-1,'2024-08-21 12:07:12','2024-08-21 12:07:12','hadesDbSvcUser@172.19.0.1'),(100148,'QATestingJLDE',NULL,1,'WeE5qC5fh+j82kSHS/FGLgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s4excpklm5vz7_242108120824','2024-08-22 12:08:24',NULL,0,-1,'2024-08-21 12:08:24','2024-08-21 12:08:24','hadesDbSvcUser@172.19.0.1'),(100149,'QATesting9E3N',NULL,1,'NDc27N/9SevTCo0h3Hdt5QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s4jnxe0ezvgax_242108123716','2024-08-22 12:37:16',NULL,0,-1,'2024-08-21 12:37:16','2024-08-21 12:37:16','hadesDbSvcUser@172.19.0.1'),(100150,'QATestingUSM3',NULL,1,'5RCwL/NOXOME6syJe7VsgwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s4jvm0wey0y8h_242108123834','2024-08-22 12:38:34',NULL,0,-1,'2024-08-21 12:38:34','2024-08-21 12:38:34','hadesDbSvcUser@172.19.0.1'),(100151,'QATestingPK5X',NULL,1,'LKXF5o2rHWME+6frBiagkwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s4kesme3xp9w9_242108124149','2024-08-22 12:41:49',NULL,0,-1,'2024-08-21 12:41:49','2024-08-21 12:41:49','hadesDbSvcUser@172.19.0.1'),(100152,'QATestingUG3L',NULL,1,'+eqaVUpM1Qh+w1wwe4sefgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s4o4ifueahl7g_242108130427','2024-08-22 13:04:27',NULL,0,-1,'2024-08-21 13:04:27','2024-08-21 13:04:27','hadesDbSvcUser@172.19.0.1'),(100153,'QATestingG9HB',NULL,1,'q4xlNy9kqZyIolo7q1z5cwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s4olism4n8s6i_242108130720','2024-08-22 13:07:20',NULL,0,-1,'2024-08-21 13:07:20','2024-08-21 13:07:20','hadesDbSvcUser@172.19.0.1'),(100154,'QATestingDT9C',NULL,1,'1iic7no4CNTfMs4INe597gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s4opf9wfgtmlu_242108130800','2024-08-22 13:08:00',NULL,0,-1,'2024-08-21 13:08:00','2024-08-21 13:08:00','hadesDbSvcUser@172.19.0.1'),(100155,'QATestingO99W',NULL,1,'3TNz1WZY03+QvrJy1QEQ1AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s9tustzorrq8a_242208075613','2024-08-23 07:56:13',NULL,0,-1,'2024-08-22 07:56:13','2024-08-22 07:56:13','hadesDbSvcUser@172.19.0.1'),(100156,'QATesting12PS',NULL,1,'jjhy6Yjs154u5wqTJM6EsQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s9uig2zrxnhdr_242208080013','2024-08-23 08:00:13',NULL,0,-1,'2024-08-22 08:00:13','2024-08-22 08:00:13','hadesDbSvcUser@172.19.0.1'),(100157,'QATestingTDDB',NULL,1,'ANKFD2DQchdwcQOxwrzcVgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s9vmvqsl0wctr_242208080704','2024-08-23 08:07:04',NULL,0,-1,'2024-08-22 08:07:04','2024-08-22 08:07:04','hadesDbSvcUser@172.19.0.1'),(100158,'QATestingTULE',NULL,1,'BVWm5yrknGaQuot+7WLB9wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s9w50tsnb0v8c_242208081008','2024-08-23 08:10:08',NULL,0,-1,'2024-08-22 08:10:08','2024-08-22 08:10:08','hadesDbSvcUser@172.19.0.1'),(100159,'QATesting16P7',NULL,1,'2Qbxp5lq1w7Irf4opRMtHgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s9wpk01ncfjnx_242208081337','2024-08-23 08:13:37',NULL,0,-1,'2024-08-22 08:13:37','2024-08-22 08:13:37','hadesDbSvcUser@172.19.0.1'),(100160,'QATestingSL0J',NULL,1,'HyW2vYED5QISS8vszVJaXQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s9xr3pko7fdkq_242208081958','2024-08-23 08:19:58',NULL,0,-1,'2024-08-22 08:19:58','2024-08-22 08:19:58','hadesDbSvcUser@172.19.0.1'),(100161,'QATestingV9Q2',NULL,1,'sd0qwa8U1Rgw9LkbfCLt8gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s9yzvuot6rt0q_242208082733','2024-08-23 08:27:33',NULL,0,-1,'2024-08-22 08:27:33','2024-08-22 08:27:33','hadesDbSvcUser@172.19.0.1'),(100162,'QATestingA4BW',NULL,1,'ie8raYLlggIPdBLAdC0P2AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31s9zqkbgofhn16_242208083204','2024-08-23 08:32:04',NULL,0,-1,'2024-08-22 08:32:04','2024-08-22 08:32:04','hadesDbSvcUser@172.19.0.1'),(100163,'QATesting6O0Q',NULL,1,'GrIxsl90lxQmIzKEtcEoXQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31sa08zt94tayh4_242208083511','2024-08-23 08:35:11',NULL,0,-1,'2024-08-22 08:35:11','2024-08-22 08:35:11','hadesDbSvcUser@172.19.0.1'),(100164,'QATesting4H2O',NULL,1,'6yMn9ca7T96xOe6sVQr0wQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhus7betxerj2dn_242208083807','2024-08-23 08:38:07',NULL,0,-1,'2024-08-22 08:38:07','2024-08-22 08:38:07','hadesDbSvcUser@172.19.0.1'),(100165,'QATestingBL78',NULL,1,'9m9t8DRLHNwN+ZNxOVLc6gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhusc7s7mfhncvz_242208084106','2024-08-23 08:41:06',NULL,0,-1,'2024-08-22 08:41:06','2024-08-22 08:41:06','hadesDbSvcUser@172.19.0.1'),(100166,'QATestingHXDN',NULL,1,'Z4+vmoFjuVjS4Kwqef7g1gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhuxv5nt9ieyzr7_242208104220','2024-08-23 10:42:20',NULL,0,-1,'2024-08-22 10:42:20','2024-08-22 10:42:20','hadesDbSvcUser@172.19.0.1'),(100167,'QATestingTXMM',NULL,1,'yU5adtLfPesj4HvAEeTEoAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhv3b8ez2xmb0lf_242208124149','2024-08-23 12:41:49',NULL,0,-1,'2024-08-22 12:41:49','2024-08-22 12:41:49','hadesDbSvcUser@172.19.0.1'),(100168,'QATestingVLFM',NULL,1,'8sufGdvt1ZEL71LwTFeKkAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhv3d5g0w41z7in_242208124259','2024-08-23 12:42:59',NULL,0,-1,'2024-08-22 12:42:59','2024-08-22 12:42:59','hadesDbSvcUser@172.19.0.1'),(100169,'QATesting75FL',NULL,1,'2W9b3+irI9TLlY3R6OGErQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhv4qkklzbthh4j_242208131306','2024-08-23 13:13:06',NULL,0,-1,'2024-08-22 13:13:06','2024-08-22 13:13:06','hadesDbSvcUser@172.19.0.1'),(100170,'QATestingX5JB',NULL,1,'5tYJZLHgmlMCAUuqn2FAzgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhv4ufkcm56l0xn_242208131527','2024-08-23 13:15:27',NULL,0,-1,'2024-08-22 13:15:27','2024-08-22 13:15:27','hadesDbSvcUser@172.19.0.1'),(100171,'QATesting4KZC',NULL,1,'bdT8hKIogzIjII7lWUyRjgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhv4x8mhqw4a9dv_242208131710','2024-08-23 13:17:10',NULL,0,-1,'2024-08-22 13:17:10','2024-08-22 13:17:10','hadesDbSvcUser@172.19.0.1'),(100172,'QATestingL9X9',NULL,1,'8UnMuRktmzfxs/S8bXbyZgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhv51q0wfusjtvy_242208131954','2024-08-23 13:19:54',NULL,0,-1,'2024-08-22 13:19:54','2024-08-22 13:19:54','hadesDbSvcUser@172.19.0.1'),(100173,'QATesting1IVE',NULL,1,'m2If++3y3EBgKcmBdc7hFwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhv54e64l88mqzp_242208132131','2024-08-23 13:21:31',NULL,0,-1,'2024-08-22 13:21:31','2024-08-22 13:21:31','hadesDbSvcUser@172.19.0.1'),(100174,'QATestingV8F4',NULL,1,'z9TJHTHb2jEXwMRcdLa77gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhv56qqlph8dy6a_242208132257','2024-08-23 13:22:57',NULL,0,-1,'2024-08-22 13:22:57','2024-08-22 13:22:57','hadesDbSvcUser@172.19.0.1'),(100175,'QATestingGV2A',NULL,1,'kuNHR7BhRwHgv36G2WU8wwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhv58kb4lnycuaf_242208132404','2024-08-23 13:24:04',NULL,0,-1,'2024-08-22 13:24:04','2024-08-22 13:24:04','hadesDbSvcUser@172.19.0.1'),(100176,'QATesting89OQ',NULL,1,'/+OO24gDvgc02vRQt6+spwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhv5csfp1oj6elz_242208132638','2024-08-23 13:26:38',NULL,0,-1,'2024-08-22 13:26:38','2024-08-22 13:26:38','hadesDbSvcUser@172.19.0.1'),(100177,'QATestingYHRX',NULL,1,'bsIeU2Itt5l/S481XUEQ+gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuhw9xf0gb2f4pwt_242308041641','2024-08-24 04:16:41',NULL,0,-1,'2024-08-23 04:16:41','2024-08-23 04:16:41','hadesDbSvcUser@172.19.0.1'),(100178,'Gaurav Singh','$2a$10$m1AOGlB1VTkfeRJ26zjjUuUTBpM6YxGTq9it29vJbdYpHOPZ50N0m',1,'j8uwYVh/h0IwgxTz5nQP5uMbl+xX8J3Se/KyCqenqSKWuhYcikV2K2FHg3V5i/Li',-1,1,'3wnjeyicui26q9gmukv2z8m_242608100454','2024-08-26 10:05:45','$2a$10$m1AOGlB1VTkfeRJ26zjjUu',0,-1,'2024-08-26 10:04:54','2024-08-26 10:05:45','hadesDbSvcUser@172.19.0.1'),(100179,'QATestingO67I',NULL,1,'mNoNBX2cx7lQRM6d1mfPtwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiekgint0mx68cl_240209050250','2024-09-03 05:02:50',NULL,0,-1,'2024-09-02 05:02:50','2024-09-02 05:02:50','hadesDbSvcUser@172.19.0.1'),(100180,'QATestingJWFX',NULL,1,'xBu0m8r7WTA2HG7INoN0oQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiiaf13l64kjmxq_240409060129','2024-09-05 06:01:29',NULL,0,-1,'2024-09-04 06:01:29','2024-09-04 06:01:29','hadesDbSvcUser@172.19.0.1'),(100181,'QATestingKWEA',NULL,1,'RwMrRO11OIwhuXU5PSd/OgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiiayal1na035nr_240409061313','2024-09-05 06:13:13',NULL,0,-1,'2024-09-04 06:13:13','2024-09-04 06:13:13','hadesDbSvcUser@172.19.0.1'),(100182,'Jaekyun','$2a$10$8BJVV3BH7U1O39SZz25.se8IMzK00CofltqnKL2S0xyuR47xLNv9u',1,'jDjhEvM/oTSCln/TA26AjZki4ciB+M5QlFOMGo08lhI=',-1,1,'3wnjeyicum5tpo7eijtxhiv_241511091926','2024-11-15 09:19:45','$2a$10$8BJVV3BH7U1O39SZz25.se',0,-1,'2024-09-10 00:08:43','2024-11-15 09:19:45','hadesDbSvcUser@172.19.0.1'),(100183,'QATestingTOVI',NULL,1,'1o/8F4KdQI3ZGE4fKgJmlQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuit6j10qkmufady_241009052312','2024-09-11 05:23:12',NULL,0,-1,'2024-09-10 05:23:12','2024-09-10 05:23:12','hadesDbSvcUser@172.19.0.1'),(100184,'TestQa',NULL,1,'wD9m8ITTM2zs9gfOBoFpBuo1sH0hpz92RsgopHt8Nwk=',-1,1,'3wnjeyicuit7nbzn1u1n9hn_241009054746','2024-09-11 05:47:46',NULL,0,-1,'2024-09-10 05:47:46','2024-09-10 05:47:46','hadesDbSvcUser@172.19.0.1'),(100185,'QATestingWHE9',NULL,1,'on8RPi0GZUejmDS8qQNL1QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuit8tcg16qcnlls_241009061322','2024-09-11 06:13:22',NULL,0,-1,'2024-09-10 06:13:22','2024-09-10 06:13:22','hadesDbSvcUser@172.19.0.1'),(100186,'QATestingPNB1',NULL,1,'Ixu8XwKI/RapUCb1Yysc+AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuit8w6haxe3o4se_241009061505','2024-09-11 06:15:05',NULL,0,-1,'2024-09-10 06:15:05','2024-09-10 06:15:05','hadesDbSvcUser@172.19.0.1'),(100187,'QATestingUCFS',NULL,1,'WmPvW6yWnhnyosNucAM7swIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuit8y2nwknl7q6r_241009061615','2024-09-11 06:16:15',NULL,0,-1,'2024-09-10 06:16:15','2024-09-10 06:16:15','hadesDbSvcUser@172.19.0.1'),(100188,'QATestingCVR4',NULL,1,'p2wwGyBB7lCo6EFwcOr5lwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuit90mini9tbgiq_241009061748','2024-09-11 06:17:48',NULL,0,-1,'2024-09-10 06:17:48','2024-09-10 06:17:48','hadesDbSvcUser@172.19.0.1'),(100189,'QATesting75FK',NULL,1,'ahPKq85KhB0rt3U9nFTwlAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuit95bz5r074eil_241009062040','2024-09-11 06:20:40',NULL,0,-1,'2024-09-10 06:20:40','2024-09-10 06:20:40','hadesDbSvcUser@172.19.0.1'),(100190,'QATestingLXFO',NULL,1,'t7zCyz/y4b2o+Az8TupKqAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuit9iycqrjbii03_241009062858','2024-09-11 06:28:58',NULL,0,-1,'2024-09-10 06:28:58','2024-09-10 06:28:58','hadesDbSvcUser@172.19.0.1'),(100191,'QATesting69XD',NULL,1,'f9QqNsZVHydwo9QvQjxiJwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuit9qf3rjutkkp1_241009063331','2024-09-11 06:33:31',NULL,0,-1,'2024-09-10 06:33:31','2024-09-10 06:33:31','hadesDbSvcUser@172.19.0.1'),(100192,'QATestingUAHW',NULL,1,'oUOzvnYVmH8dhbcSBTpePgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuit9stdghe2cfdl_241009063459','2024-09-11 06:34:59',NULL,0,-1,'2024-09-10 06:34:59','2024-09-10 06:34:59','hadesDbSvcUser@172.19.0.1'),(100193,'QATestingHMBD',NULL,1,'wzi0flYZ0gm+iaqpDfBvmAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuit9vup2laojldf_241009063650','2024-09-11 06:36:50',NULL,0,-1,'2024-09-10 06:36:50','2024-09-10 06:36:50','hadesDbSvcUser@172.19.0.1'),(100194,'QATesting9EP9',NULL,1,'QSQnSOziQuW9ZLaCxShuCQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuitddi234e09py9_241009075324','2024-09-11 07:53:24',NULL,0,-1,'2024-09-10 07:53:24','2024-09-10 07:53:24','hadesDbSvcUser@172.19.0.1'),(100195,'QATesting97OE',NULL,1,'YsdUH+9B9iSQL5TR5/Cn9wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuitjy221yl88671_241009101732','2024-09-11 10:17:32',NULL,0,-1,'2024-09-10 10:17:32','2024-09-10 10:17:32','hadesDbSvcUser@172.19.0.1'),(100196,'QATestingW0IB',NULL,1,'EA7jWJ7sM5jo7JaUw8y6BwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuitlqi29mgvuofl_241009105649','2024-09-11 10:56:49',NULL,0,-1,'2024-09-10 10:56:49','2024-09-10 10:56:49','hadesDbSvcUser@172.19.0.1'),(100197,'QATestingE6UX',NULL,1,'gKxafUshDYH/gDMTRDVSCgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuitlvasvt62oqj6_241009105944','2024-09-11 10:59:44',NULL,0,-1,'2024-09-10 10:59:44','2024-09-10 10:59:44','hadesDbSvcUser@172.19.0.1'),(100198,'QATestingG1Z9',NULL,1,'G0tapicO70obhzAv2Y0kpgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuitlya57p0d4u4k_241009110133','2024-09-11 11:01:33',NULL,0,-1,'2024-09-10 11:01:33','2024-09-10 11:01:33','hadesDbSvcUser@172.19.0.1'),(100199,'QATestingYX8S',NULL,1,'mm7kZ9pBU62ZpbUrprcBogIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuitmu90a6sbngmt_241009112102','2024-09-11 11:21:02',NULL,0,-1,'2024-09-10 11:21:02','2024-09-10 11:21:02','hadesDbSvcUser@172.19.0.1'),(100200,'QATestingOE4L',NULL,1,'JIKf2Tcyi5y9oRiJAd4IxQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiww10csenase6m_241209061146','2024-09-13 06:11:46',NULL,0,-1,'2024-09-12 06:11:46','2024-09-12 06:11:46','hadesDbSvcUser@172.19.0.1'),(100201,'QATesting9N55',NULL,1,'3xBcVLGV1689E99+7Bh5zgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiww37xh6fm260o_241209061307','2024-09-13 06:13:07',NULL,0,-1,'2024-09-12 06:13:07','2024-09-12 06:13:07','hadesDbSvcUser@172.19.0.1'),(100202,'QATestingHEKT',NULL,1,'4EWOZGXohX+Rl3dzC4xOfgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiwzcat59uux863_241209072428','2024-09-13 07:24:28',NULL,0,-1,'2024-09-12 07:24:28','2024-09-12 07:24:28','hadesDbSvcUser@172.19.0.1'),(100203,'QATestingOXGM',NULL,1,'LltfW2Kzxy298rYGEfzwngIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiwzdv5x7ip43vu_241209072525','2024-09-13 07:25:25',NULL,0,-1,'2024-09-12 07:25:25','2024-09-12 07:25:25','hadesDbSvcUser@172.19.0.1'),(100204,'QATestingLNW2',NULL,1,'QqT6MJyjEamtqJEYkjPlCgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiwzgoq6fa7ga0r_241209072708','2024-09-13 07:27:08',NULL,0,-1,'2024-09-12 07:27:08','2024-09-12 07:27:08','hadesDbSvcUser@172.19.0.1'),(100205,'QATestingA8JN',NULL,1,'Vw2wQsXoCimiOVcgqUjrnwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiwzj85gzc59vps_241209072841','2024-09-13 07:28:41',NULL,0,-1,'2024-09-12 07:28:41','2024-09-12 07:28:41','hadesDbSvcUser@172.19.0.1'),(100206,'QATesting96MQ',NULL,1,'wyW5oq3/1ZWcFP6G4oBCwAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiwzka43hn9so2j_241209072920','2024-09-13 07:29:20',NULL,0,-1,'2024-09-12 07:29:20','2024-09-12 07:29:20','hadesDbSvcUser@172.19.0.1'),(100207,'vgn',NULL,1,'fPlTL8FTdl0TVJTQKenFdA==',-1,1,'3wnjeyicuiwzltqcwnv9l2j_241209073016','2024-09-13 07:30:16',NULL,0,-1,'2024-09-12 07:30:16','2024-09-12 07:30:16','hadesDbSvcUser@172.19.0.1'),(100208,'QATestingYZR0',NULL,1,'/T3QH10bPv3pLVZn7r6u+AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiwzn56ss9yasqq_241209073104','2024-09-13 07:31:04',NULL,0,-1,'2024-09-12 07:31:04','2024-09-12 07:31:04','hadesDbSvcUser@172.19.0.1'),(100209,'QATesting2W97',NULL,1,'CcOXJJXPLmlKZG9CQKtw9wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiwzov1eljerxug_241209073207','2024-09-13 07:32:07',NULL,0,-1,'2024-09-12 07:32:07','2024-09-12 07:32:07','hadesDbSvcUser@172.19.0.1'),(100210,'QATestingI5YG',NULL,1,'8TRFIeQcU/RS4tq5qWOYOgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuiwzqfm6xhxgai9_241209073305','2024-09-13 07:33:05',NULL,0,-1,'2024-09-12 07:33:05','2024-09-12 07:33:05','hadesDbSvcUser@172.19.0.1'),(100211,'QATesting43PO',NULL,1,'4+v24nYR7NGhJLjOpvvIQwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuix045t8mw157jf_241209074126','2024-09-13 07:41:26',NULL,0,-1,'2024-09-12 07:41:26','2024-09-12 07:41:26','hadesDbSvcUser@172.19.0.1'),(100212,'QATestingRJVR',NULL,1,'3rvslqt9RqU9Ghac5gb4YgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuix1yo9yhlzprl8_241209082158','2024-09-13 08:21:58',NULL,0,-1,'2024-09-12 08:21:58','2024-09-12 08:21:58','hadesDbSvcUser@172.19.0.1'),(100213,'Yoonjeong Choi','$2a$10$jM8tft1BWyLGwlii3V0B9e3MTZO1FzcNys06CGR.kloz5MD/Sn//O',1,'204WADLTSlJC6Z4QDmZAYjxf5yR0PYqMvPW02TuGmXI=',-1,1,'3wnjeyicuiymqcjxxt2giy7_241309050718','2024-09-13 05:07:44','$2a$10$jM8tft1BWyLGwlii3V0B9e',0,-1,'2024-09-13 05:07:18','2024-09-13 05:07:44','hadesDbSvcUser@172.19.0.1'),(100214,'Gyeongjun Lee','$2a$10$3mE/nCl3rLhXnDz0LatJC.WeL1mWpP6Zo16NSxfvuTdUsnPgS85WS',1,'PF26u19wwfH99UvJut3ckaH0ot+k86WbxHgYWoXL28M=',-1,1,'3wnjeyicuiymr10vexchvjm_241309050743','2024-09-13 05:08:50','$2a$10$3mE/nCl3rLhXnDz0LatJC.',0,-1,'2024-09-13 05:07:43','2024-09-13 05:08:50','hadesDbSvcUser@172.19.0.1'),(100215,'Jooyoung Heo','$2a$10$azJnio.w7FB5Uvm4kxC6eehy2z53JIZNN.FTdgIswZh/PfJxh927u',1,'5QkQUbri3AM7RjyXKxrtTpki4ciB+M5QlFOMGo08lhI=',-1,1,'3wnjeyicuiymrmff4uyn6d4_241309050805','2024-09-13 05:08:37','$2a$10$azJnio.w7FB5Uvm4kxC6ee',0,-1,'2024-09-13 05:08:05','2024-09-13 05:08:37','hadesDbSvcUser@172.19.0.1'),(100216,'QATestingJH5C',NULL,1,'NlvbX9TI2JD7M7jLyqsrTwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj3790pus10ot5h_241509171621','2024-09-16 17:16:21',NULL,0,-1,'2024-09-15 17:16:21','2024-09-15 17:16:21','hadesDbSvcUser@172.19.0.1'),(100217,'QATesting2JR1',NULL,1,'WTlxfcFxtoSAQ2XXJmr9fQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj437tzxw5qo0go_241609045736','2024-09-17 04:57:36',NULL,0,-1,'2024-09-16 04:57:36','2024-09-16 04:57:36','hadesDbSvcUser@172.19.0.1'),(100218,'QATestingKTBP',NULL,1,'0+0EReHfI4cWbqQNUX+BcwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj43v224ph7os05_241609051145','2024-09-17 05:11:45',NULL,0,-1,'2024-09-16 05:11:45','2024-09-16 05:11:45','hadesDbSvcUser@172.19.0.1'),(100219,'QATestingSYPK',NULL,1,'a/lfBsgpVsMnnmSNnwkBEAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj45gda7ryve6gc_241609054641','2024-09-17 05:46:41',NULL,0,-1,'2024-09-16 05:46:41','2024-09-16 05:46:41','hadesDbSvcUser@172.19.0.1'),(100220,'QATesting3WVA',NULL,1,'o6valkZw9nkZB6rThJ1SuAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj4auejuwpbf8k4_241609074455','2024-09-17 07:44:55',NULL,0,-1,'2024-09-16 07:44:55','2024-09-16 07:44:55','hadesDbSvcUser@172.19.0.1'),(100221,'QATesting2WEH',NULL,1,'ZMGFONKsnwoYzMTCFKYIAgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj4bkajrc8zw5va_241609080041','2024-09-17 08:00:41',NULL,0,-1,'2024-09-16 08:00:41','2024-09-16 08:00:41','hadesDbSvcUser@172.19.0.1'),(100222,'QATestingI7OB',NULL,1,'lZ59kMsGNexrhsV0HNawgwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj4fsy52rbc43ao_241609093343','2024-09-17 09:33:43',NULL,0,-1,'2024-09-16 09:33:43','2024-09-16 09:33:43','hadesDbSvcUser@172.19.0.1'),(100223,'QATestingY4OO',NULL,1,'329IxO778SJy/jD7W5+YdQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj4m1rodusu36rn_241609115042','2024-09-17 11:50:42',NULL,0,-1,'2024-09-16 11:50:42','2024-09-16 11:50:42','hadesDbSvcUser@172.19.0.1'),(100224,'QATestingBSJS',NULL,1,'pYfn6/+q4cYIP5Eoe/OWcwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj64az13amd6ue0_241709074055','2024-09-18 07:40:55',NULL,0,-1,'2024-09-17 07:40:55','2024-09-17 07:40:55','hadesDbSvcUser@172.19.0.1'),(100225,'QATestingRHBB',NULL,1,'zAcVNSm9Ntywkh/wOFquCQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj663jki3c9n0u8_241709082016','2024-09-18 08:20:16',NULL,0,-1,'2024-09-17 08:20:16','2024-09-17 08:20:16','hadesDbSvcUser@172.19.0.1'),(100226,'QATestingWDEV',NULL,1,'TRibdPVkY4JJx9ty8zStgQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj6ccdj4gms81n6_241709103716','2024-09-18 10:37:16',NULL,0,-1,'2024-09-17 10:37:16','2024-09-17 10:37:16','hadesDbSvcUser@172.19.0.1'),(100227,'QATestingD4L1',NULL,1,'ccthKcvjLoVwXV+9FjhJIQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj7un9lmxi7lfgs_241809062830','2024-09-19 06:28:30',NULL,0,-1,'2024-09-18 06:28:30','2024-09-18 06:28:30','hadesDbSvcUser@172.19.0.1'),(100228,'QATestingCY7Q',NULL,1,'GzdHB0J5WxTiBe3omiNgRwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj7vlt6krnvaclr_241809064933','2024-09-19 06:49:33',NULL,0,-1,'2024-09-18 06:49:33','2024-09-18 06:49:33','hadesDbSvcUser@172.19.0.1'),(100229,'QATestingD66F',NULL,1,'9H1LeEhdLlhmnSs/22gJ3AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj83ubwpjbl0z8a_241809095014','2024-09-19 09:50:14',NULL,0,-1,'2024-09-18 09:50:14','2024-09-18 09:50:14','hadesDbSvcUser@172.19.0.1'),(100230,'QATesting22SU',NULL,1,'O1FNIEk4CvHqWavjuWZubwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj866j4hwtceoo9_241809104132','2024-09-19 10:41:32',NULL,0,-1,'2024-09-18 10:41:32','2024-09-18 10:41:32','hadesDbSvcUser@172.19.0.1'),(100231,'QATestingUMJM',NULL,1,'bD9fp6fdq+F6NnS2Vlq5lQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj869l6vgxx968s_241809104324','2024-09-19 10:43:24',NULL,0,-1,'2024-09-18 10:43:24','2024-09-18 10:43:24','hadesDbSvcUser@172.19.0.1'),(100232,'QATestingMAU7',NULL,1,'fciR/oeMCxQby5QFiiMDhwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj86oqos765ki2o_241809105238','2024-09-19 10:52:38',NULL,0,-1,'2024-09-18 10:52:38','2024-09-18 10:52:38','hadesDbSvcUser@172.19.0.1'),(100233,'QATestingH96F',NULL,1,'j8m/E/ZQ/odrLg8KoBx6fAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj873qdcbi6q2ph_241809110146','2024-09-19 11:01:46',NULL,0,-1,'2024-09-18 11:01:46','2024-09-18 11:01:46','hadesDbSvcUser@172.19.0.1'),(100234,'QATestingHIPA',NULL,1,'aV4QM9n+1OaFJ6xHPFaU8gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj877dsmwcshj14_241809110400','2024-09-19 11:04:00',NULL,0,-1,'2024-09-18 11:04:00','2024-09-18 11:04:00','hadesDbSvcUser@172.19.0.1'),(100235,'QATestingC7CC',NULL,1,'MMrf6wQUjHH4ODHFTUcadwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj879i3obdx5ukq_241809110517','2024-09-19 11:05:17',NULL,0,-1,'2024-09-18 11:05:17','2024-09-18 11:05:17','hadesDbSvcUser@172.19.0.1'),(100236,'QATesting2USG',NULL,1,'eGP9zAMN6bSnpfZaAQp/qAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj87bfjwam3rrnv_241809110628','2024-09-19 11:06:28',NULL,0,-1,'2024-09-18 11:06:28','2024-09-18 11:06:28','hadesDbSvcUser@172.19.0.1'),(100237,'QATestingOZ2K',NULL,1,'xVis7yByOmNRsGLUL8QREwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuj87k8hg5x4kevt_241809111150','2024-09-19 11:11:50',NULL,0,-1,'2024-09-18 11:11:50','2024-09-18 11:11:50','hadesDbSvcUser@172.19.0.1'),(100238,'Jihun Lee','$2a$10$NtzFUMror/bdCNZkxfqU4uFeGZ29hz0zpF18pZGNoDDsZLeCHIikK',1,'nMyPIIVHO8xnmLhw7AHpVrCelWXP7fK/9Hc9yMrB3Rw=',-1,1,'3wnjeyicujb5v9bixezrcv9_242009020352','2024-09-20 02:07:58','$2a$10$NtzFUMror/bdCNZkxfqU4u',0,-1,'2024-09-20 02:03:52','2024-09-20 02:07:58','hadesDbSvcUser@172.19.0.1'),(100239,'QATestingX70C',NULL,1,'33YUq1SHD5+IPfTguLXSOgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicujbyc445hfu02sx_242009122822','2024-09-21 12:28:22',NULL,0,-1,'2024-09-20 12:28:22','2024-09-20 12:28:22','hadesDbSvcUser@172.19.0.1'),(100240,'QATesting2Z9Z',NULL,1,'UGQSMZ/oMIrQXfOw1jtM9QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicujbywu7yy6ee0pb_242009124100','2024-09-21 12:41:00',NULL,0,-1,'2024-09-20 12:41:00','2024-09-20 12:41:00','hadesDbSvcUser@172.19.0.1'),(100241,'QATesting19N0',NULL,1,'bFoWVO1s/+ja4GAjdB4SkgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicujbyzzv8du7d1u2_242009124255','2024-09-21 12:42:55',NULL,0,-1,'2024-09-20 12:42:55','2024-09-20 12:42:55','hadesDbSvcUser@172.19.0.1'),(100242,'QATesting38ML',NULL,1,'8Sr7AdrwmU5UtLBOuf2SYgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicujc018kt6snslfv_242009130537','2024-09-21 13:05:37',NULL,0,-1,'2024-09-20 13:05:37','2024-09-20 13:05:37','hadesDbSvcUser@172.19.0.1'),(100243,'saurabh dangwal','$2a$10$8dFLPEZv0iA78CAUOXf0oOulg8fL7nbYQ50XIMT9om4Sj9EgukEoa',1,'eGSgUuf3Dpfnb7WHXdzif9P3kl78wnxTj3gGpqaMfBY=',-1,1,'3wnjeyicujk6kgyu9rfk6pl_242509004648','2024-09-25 00:47:37','$2a$10$8dFLPEZv0iA78CAUOXf0oO',0,-1,'2024-09-23 07:37:37','2024-09-25 00:47:37','hadesDbSvcUser@172.19.0.1'),(100244,'QATesting96SG',NULL,1,'kuAPFdcCtRrvvNdaSBfcagIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicujin0rnxhwh1qnt_242409042816','2024-09-25 04:28:16',NULL,0,-1,'2024-09-24 04:28:16','2024-09-24 04:28:16','hadesDbSvcUser@172.19.0.1'),(100245,'QATesting7CN8',NULL,1,'yrrtFxUKNz0bVUGezpMIiQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicujiphju4jepdag5_242409052222','2024-09-25 05:22:22',NULL,0,-1,'2024-09-24 05:22:22','2024-09-24 05:22:22','hadesDbSvcUser@172.19.0.1'),(100246,'QATestingVXHQ',NULL,1,'uaoCgT23his3BJFwOiFXigIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicujiqvhmebo00b1m_242409055247','2024-09-25 05:52:47',NULL,0,-1,'2024-09-24 05:52:47','2024-09-24 05:52:47','hadesDbSvcUser@172.19.0.1'),(100247,'QATesting6UHH',NULL,1,'PnNYnS936iwPHNMIaBaWnQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicujkfxkc3uy7pe0v_242509041212','2024-09-26 04:12:12',NULL,0,-1,'2024-09-25 04:12:12','2024-09-25 04:12:12','hadesDbSvcUser@172.19.0.1'),(100248,'QATestingX2ZT',NULL,1,'JaKlx4yQjCAclRHx9t2N7gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0azuieu7cklgcfy_242509081811','2024-09-26 08:18:11',NULL,0,-1,'2024-09-25 08:18:11','2024-09-25 08:18:11','hadesDbSvcUser@172.19.0.1'),(100249,'QATestingY6BE',NULL,1,'pyELz5QgnufrmWZ/z5YbJwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0azuijgsvgg1nsm_242509082601','2024-09-26 08:26:01',NULL,0,-1,'2024-09-25 08:26:01','2024-09-25 08:26:01','hadesDbSvcUser@172.19.0.1'),(100250,'QATestingF4SH',NULL,1,'5LbX2v38/9u62D9aeOursgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0azukr5o0a1afbi_242509104054','2024-09-26 10:40:54',NULL,0,-1,'2024-09-25 10:40:54','2024-09-25 10:40:54','hadesDbSvcUser@172.19.0.1'),(100251,'QATestingQ5NK',NULL,1,'jNTJyKiYhpdk0Malk2vLUgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0azuktwj091k1ha_242509104533','2024-09-26 10:45:33',NULL,0,-1,'2024-09-25 10:45:33','2024-09-25 10:45:33','hadesDbSvcUser@172.19.0.1'),(100252,'QATesting3R21',NULL,1,'8/9suhTtea12Wnk9xlHX0AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0azulodxgxxf46x_242509113709','2024-09-26 11:37:09',NULL,0,-1,'2024-09-25 11:37:09','2024-09-25 11:37:09','hadesDbSvcUser@172.19.0.1'),(100253,'QATestingK6AT',NULL,1,'v5SJcblV0nzfzhoSaZpK1gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0azultdupt9l7x1_242509114536','2024-09-26 11:45:36',NULL,0,-1,'2024-09-25 11:45:36','2024-09-25 11:45:36','hadesDbSvcUser@172.19.0.1'),(100254,'QATesting03SP',NULL,1,'YOj2Z7Xic+VQFchdGKtYIgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0azulx879biufoh_242509115207','2024-09-26 11:52:07',NULL,0,-1,'2024-09-25 11:52:07','2024-09-25 11:52:07','hadesDbSvcUser@172.19.0.1'),(100255,'QATestingZXQE',NULL,1,'vXtMYoac46RWQq5V5h82CAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31yie4yb22al6pf_242509125835','2024-09-26 12:58:35',NULL,0,-1,'2024-09-25 12:58:35','2024-09-25 12:58:35','hadesDbSvcUser@172.19.0.1'),(100256,'QATestingHV3V',NULL,1,'6rlzFJM9FxzQAPDplT8ghwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31yorbc2wy2843i_242609121506','2024-09-27 12:15:06',NULL,0,-1,'2024-09-26 12:15:06','2024-09-26 12:15:06','hadesDbSvcUser@172.19.0.1'),(100257,'QATesting9SR7',NULL,1,'UTSguakJZWoEf90mxahE6QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zdcz80fu1u504_243009061158','2024-10-01 06:11:58',NULL,0,-1,'2024-09-30 06:11:58','2024-09-30 06:11:58','hadesDbSvcUser@172.19.0.1'),(100258,'QATestingUDQF',NULL,1,'ldC3iAn9d67DGmC00SNm4AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zde6gnkphp7c0_243009061917','2024-10-01 06:19:17',NULL,0,-1,'2024-09-30 06:19:17','2024-09-30 06:19:17','hadesDbSvcUser@172.19.0.1'),(100259,'QATestingDTYD',NULL,1,'R6fVIzEuAhZp1sdGk3XkjwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zdekdsloh8nlm_243009062139','2024-10-01 06:21:39',NULL,0,-1,'2024-09-30 06:21:39','2024-09-30 06:21:39','hadesDbSvcUser@172.19.0.1'),(100260,'QATestingJUOZ',NULL,1,'V7y/1yJnzc+cY4GUOqrK4AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zeqe3k4ifqhmo_243009111305','2024-10-01 11:13:05',NULL,0,-1,'2024-09-30 11:13:05','2024-09-30 11:13:05','hadesDbSvcUser@172.19.0.1'),(100261,'QATesting6GEJ',NULL,1,'BXpm1uFYFUVqVQKm5fbJAwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zetqgqdyw43n2_243009113327','2024-10-01 11:33:27',NULL,0,-1,'2024-09-30 11:33:27','2024-09-30 11:33:27','hadesDbSvcUser@172.19.0.1'),(100262,'QATestingD1UJ',NULL,1,'96njgQNuAmbX65dtR+Ry1QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zeuci8mtvy6dc_243009113711','2024-10-01 11:37:11',NULL,0,-1,'2024-09-30 11:37:11','2024-09-30 11:37:11','hadesDbSvcUser@172.19.0.1'),(100263,'QATesting0PL3',NULL,1,'UixDun1iqqWcikSys8O8lwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zf23p15rtali4_243009122426','2024-10-01 12:24:26',NULL,0,-1,'2024-09-30 12:24:26','2024-09-30 12:24:26','hadesDbSvcUser@172.19.0.1'),(100264,'QATestingEL9F',NULL,1,'Hi92XTmP8bH6JK3vZMp0MAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zf8rxdt9qw5de_243009130506','2024-10-01 13:05:06',NULL,0,-1,'2024-09-30 13:05:06','2024-09-30 13:05:06','hadesDbSvcUser@172.19.0.1'),(100265,'QATesting4N8K',NULL,1,'7c7lnEv9WhCBCPFNdQgPBgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zjhqiddbgwpom_240110043711','2024-10-02 04:37:11',NULL,0,-1,'2024-10-01 04:37:11','2024-10-01 04:37:11','hadesDbSvcUser@172.19.0.1'),(100266,'QATestingLA9O',NULL,1,'h3vyZokS8uINrLPev4XqswIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zkthjguwmkfd7_240110092809','2024-10-02 09:28:09',NULL,0,-1,'2024-10-01 09:28:09','2024-10-01 09:28:09','hadesDbSvcUser@172.19.0.1'),(100267,'QATestingZVWQ',NULL,1,'AqZ8oA/5BYt1aqznKhyAqAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zkvefrxebp8az_240110093949','2024-10-02 09:39:49',NULL,0,-1,'2024-10-01 09:39:49','2024-10-01 09:39:49','hadesDbSvcUser@172.19.0.1'),(100268,'QATestingK3HY',NULL,1,'6o3UfAl0WAw+5g0RCiPPFAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zkxo03k1r5vjg_240110095337','2024-10-02 09:53:37',NULL,0,-1,'2024-10-01 09:53:37','2024-10-01 09:53:37','hadesDbSvcUser@172.19.0.1'),(100269,'QATestingNACH',NULL,1,'SS7YxD5QKSkBhicQ6kR2ywIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zl9nq0vhqf0k8_240110110642','2024-10-02 11:06:42',NULL,0,-1,'2024-10-01 11:06:42','2024-10-01 11:06:42','hadesDbSvcUser@172.19.0.1'),(100270,'QATesting2LMG',NULL,1,'1tbYyfy+ATyTJiaGjzyXzAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zlkgf6clomd1s_240110121230','2024-10-02 12:12:30',NULL,0,-1,'2024-10-01 12:12:30','2024-10-01 12:12:30','hadesDbSvcUser@172.19.0.1'),(100271,'QATestingZKI2',NULL,1,'jPrV9KJvScqWaxmHoCXf6QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zly7szenfqlyx_240110133621','2024-10-02 13:36:21',NULL,0,-1,'2024-10-01 13:36:21','2024-10-01 13:36:21','hadesDbSvcUser@172.19.0.1'),(100272,'Ayush Media Reps','$2a$10$vsh.76wDBkeKurxa5K9O7uWmGBgyl9ZXvnFMqrUoU0aUvHAIdf0v6',1,'EVbHRtbVqtG4K21p3YDVlJzOwTK+ef7rNy2IaX4DGif3fv6hqnqX00RZPnL77VpJ',-1,1,'e2cqp1u31zpzl3s6vujrt4_240210042210','2024-10-02 04:22:50','$2a$10$vsh.76wDBkeKurxa5K9O7u',0,-1,'2024-10-02 04:22:10','2024-10-02 04:22:50','hadesDbSvcUser@172.19.0.1'),(100273,'QATesting6YTO',NULL,1,'v3okWMtcH7NhvqiTwAZhgQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zwn03kg916ex5_240310044105','2024-10-04 04:41:05',NULL,0,-1,'2024-10-03 04:41:05','2024-10-03 04:41:05','hadesDbSvcUser@172.19.0.1'),(100274,'QATestingXUY6',NULL,1,'kcxn5XccYxtMq3JOvXvvagIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zx2utzu7g0p51_240310061741','2024-10-04 06:17:41',NULL,0,-1,'2024-10-03 06:17:41','2024-10-03 06:17:41','hadesDbSvcUser@172.19.0.1'),(100275,'QATestingJ1C5',NULL,1,'EyWN6uCDQ+lb0INpwfJR1wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zxlaauclq0k7y_240310080959','2024-10-04 08:09:59',NULL,0,-1,'2024-10-03 08:09:59','2024-10-03 08:09:59','hadesDbSvcUser@172.19.0.1'),(100276,'QATestingE2J8',NULL,1,'k+G/lvpvsH4Fh4+fE999NwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zxlz9h8fodriu_240310081413','2024-10-04 08:14:13',NULL,0,-1,'2024-10-03 08:14:13','2024-10-03 08:14:13','hadesDbSvcUser@172.19.0.1'),(100277,'QATestingVQEC',NULL,1,'c+v0lhMW8sVwn06f96dkSgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zxz5y6an0kbvw_240310093434','2024-10-04 09:34:34',NULL,0,-1,'2024-10-03 09:34:34','2024-10-03 09:34:34','hadesDbSvcUser@172.19.0.1'),(100278,'QATestingGSGX',NULL,1,'7jy/GLX5GnDea6ETE2JAPgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u31zycmn3s8pow8x_240310105636','2024-10-04 10:56:36',NULL,0,-1,'2024-10-03 10:56:36','2024-10-03 10:56:36','hadesDbSvcUser@172.19.0.1'),(100279,'QATestingH32R',NULL,1,'bJzrFX+4dFfcht2YNIvtYAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u3204w2gva99jm1a_240410105117','2024-10-05 10:51:17',NULL,0,-1,'2024-10-04 10:51:17','2024-10-04 10:51:17','hadesDbSvcUser@172.19.0.1'),(100280,'QATesting30VI',NULL,1,'KKZg4LPdXRRon1xvnPv+mwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u320ndkklw06m9pc_240710062635','2024-10-08 06:26:35',NULL,0,-1,'2024-10-07 06:26:35','2024-10-07 06:26:35','hadesDbSvcUser@172.19.0.1'),(100281,'QATestingSVWZ',NULL,1,'sMOB8ZPGmaIFqnzzdf0O8QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u320pbj9a5zktk9d_240710133255','2024-10-08 13:32:55',NULL,0,-1,'2024-10-07 13:32:55','2024-10-07 13:32:55','hadesDbSvcUser@172.19.0.1'),(100282,'QATestingXMGW',NULL,1,'l12VO78ni12PvVLJzt6NnwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukdt5u9np1sxqdv_241110064436','2024-10-12 06:44:36',NULL,0,-1,'2024-10-11 06:44:36','2024-10-11 06:44:36','hadesDbSvcUser@172.19.0.1'),(100283,'QATestingDKV3',NULL,1,'deUY/WITxiuiu+p5LTJZxwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukdu4np16xbz59n_241110070549','2024-10-12 07:05:49',NULL,0,-1,'2024-10-11 07:05:49','2024-10-11 07:05:49','hadesDbSvcUser@172.19.0.1'),(100284,'(주)골든블루_메조미디어','$2a$10$AJhUsvRHlb2zWmJf8FDI1.KxIhJ1k754LbkTB9mGzaXox4LTq0/Su',1,'NnK7crJaj4azpvNWECMNbtzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',-1,1,NULL,NULL,'$2a$10$AJhUsvRHlb2zWmJf8FDI1.',0,-1,'2024-10-14 09:15:00','2024-10-14 09:15:00','hadesDbSvcUser@172.19.0.1'),(100285,'testing ad account 1','$2a$10$0WZxlvzZVeSnc.WZeEEZU.q.7c9Eq8VRB4s71hx5dkyufO8iCfD4W',1,'tvXOy3SKkFsUXIA1dH29gnwjthlhujXEm2gygJg+ZIc=',-1,1,NULL,NULL,'$2a$10$0WZxlvzZVeSnc.WZeEEZU.',0,-1,'2024-10-14 09:59:04','2024-10-14 09:59:04','hadesDbSvcUser@172.19.0.1'),(100286,'testing seller 1346','$2a$10$JfVQv1eFEzQ6AtqeyAxRfOxlwD/OMn.kj8iz8tYbdV.GKVg9TlTpO',1,'jEZHGKG6VxjP873l4ozFa3wjthlhujXEm2gygJg+ZIc=',-1,1,NULL,NULL,'$2a$10$JfVQv1eFEzQ6AtqeyAxRfO',0,-1,'2024-10-14 10:00:04','2024-10-14 10:00:04','hadesDbSvcUser@172.19.0.1'),(100287,'testing seller 134','$2a$10$rc2iVmX8tBwybphYaawu6uDEHqgRk.2vLU1N0jbkxIpktTYW/6LCi',1,'MJ3bNVrZalju6eMj8Kd7dwkYhIZm9pvv2mWm4vYsBgE=',-1,1,NULL,NULL,'$2a$10$rc2iVmX8tBwybphYaawu6u',0,-1,'2024-10-14 10:03:05','2024-10-14 10:03:05','hadesDbSvcUser@172.19.0.1'),(100288,'testing seller 1346','$2a$10$2spY37SnJgidau15YjgTueyXgJOhIqtwgf26C2cEEFDBzOavHHKU2',1,'sWe4Anf0BmV3y9QbxrPD6mKdn6yBOesWb4zH6jZdPDI=',-1,1,NULL,NULL,'$2a$10$2spY37SnJgidau15YjgTue',0,-1,'2024-10-14 12:21:14','2024-10-14 12:21:14','hadesDbSvcUser@172.19.0.1'),(100289,'QATestingXT6E',NULL,1,'JH7fGlfuhJF29/UNtav7WQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukng16ay4zpn4rw_241610133353','2024-10-17 13:33:53',NULL,0,-1,'2024-10-16 13:33:53','2024-10-16 13:33:53','hadesDbSvcUser@172.19.0.1'),(100290,'QATesting058M',NULL,1,'6WR48XTAicWv2h9OUdHhVwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukngurexnefvjwa_241610135155','2024-10-17 13:51:55',NULL,0,-1,'2024-10-16 13:51:55','2024-10-16 13:51:55','hadesDbSvcUser@172.19.0.1'),(100291,'Demo User','$2a$10$MqwbYnLsJyGT139/wX0hNO1ri5PjrOTdJ29cgvl2bd/Uv4QSGC/h.',1,'1EK4Ig9TiLkN1gbA74uSfVQuWQsXpxK9mg6YBrWPGXCdqkE+KBk1Ew1JWUWG+i2t',-1,1,'3wnjeyicukonno73xpch0ut_241710053053','2024-10-17 05:51:42','$2a$10$MqwbYnLsJyGT139/wX0hNO',0,-1,'2024-10-17 05:30:53','2024-10-17 05:51:43','hadesDbSvcUser@172.19.0.1'),(100292,'QATesting6TH8',NULL,1,'yZ3+9zvjvY1fxchOA17/YAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukoot0jejj6sdun_241710055605','2024-10-18 05:56:05',NULL,0,-1,'2024-10-17 05:56:05','2024-10-17 05:56:05','hadesDbSvcUser@172.19.0.1'),(100293,'QATestingJQVI',NULL,1,'bRElj/MPAdOZBIA9QFGWUwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukp0520cgxvev8k_241710100443','2024-10-18 10:04:43',NULL,0,-1,'2024-10-17 10:04:43','2024-10-17 10:04:43','hadesDbSvcUser@172.19.0.1'),(100294,'Rahul Waghmare','$2a$10$Ntq897OB9ztKagEn7oqbYeyfjTn0oz.xpfQp7vhckYBvmjuO9ygLG',1,'1rasnn20WZEotFhqnpFbrx5klR+ibPcwa1GdtTGKoAKdqkE+KBk1Ew1JWUWG+i2t',-1,1,'3wnjeyicukp1epw16os6nng_241710103233','2024-10-17 10:33:14','$2a$10$Ntq897OB9ztKagEn7oqbYe',0,-1,'2024-10-17 10:32:33','2024-10-17 10:33:14','hadesDbSvcUser@172.19.0.1'),(100295,'QATestingINEV',NULL,1,'NAD2B7B/GYoxiiq8AATKjAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukp2hvd1z97zmws_241710105624','2024-10-18 10:56:24',NULL,0,-1,'2024-10-17 10:56:24','2024-10-17 10:56:24','hadesDbSvcUser@172.19.0.1'),(100296,'QATestingUL1L',NULL,1,'MLs1Rt9lf/ejQrWInoJpNQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukqer8btg1vnb61_241810043505','2024-10-19 04:35:05',NULL,0,-1,'2024-10-18 04:35:05','2024-10-18 04:35:05','hadesDbSvcUser@172.19.0.1'),(100297,'QATestingY6YJ',NULL,1,'3IXHiyWqgRpOZH5apyrHhwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukqi9rcpbbwgjs9_241810055211','2024-10-19 05:52:11',NULL,0,-1,'2024-10-18 05:52:11','2024-10-18 05:52:11','hadesDbSvcUser@172.19.0.1'),(100298,'QATestingVY7L',NULL,1,'HeKWW9zJk0axkbq7qYGKuQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukwch8r6scnflcp_242110104330','2024-10-22 10:43:30',NULL,0,-1,'2024-10-21 10:43:30','2024-10-21 10:43:30','hadesDbSvcUser@172.19.0.1'),(100299,'QATestingS8MI',NULL,1,'HsN656rmqMhehUEPVBYWiQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukwcy40h7cz6fz6_242110105347','2024-10-22 10:53:47',NULL,0,-1,'2024-10-21 10:53:47','2024-10-21 10:53:47','hadesDbSvcUser@172.19.0.1'),(100300,'QATestingV6PX',NULL,1,'lNC36wzSOFIHqznnIwK9vAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukwfu2tchd6looo_242110115708','2024-10-22 11:57:08',NULL,0,-1,'2024-10-21 11:57:08','2024-10-21 11:57:08','hadesDbSvcUser@172.19.0.1'),(100301,'QATesting64SG',NULL,1,'xikgrLuZLaZ41M86F5T/lgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukwhxkkpliizwtd_242110124308','2024-10-22 12:43:08',NULL,0,-1,'2024-10-21 12:43:08','2024-10-21 12:43:08','hadesDbSvcUser@172.19.0.1'),(100302,'QATestingUMEL',NULL,1,'gthS9UrpYhh7DnntVmC4QQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukwjphlfmjj9rob_242110132205','2024-10-22 13:22:05',NULL,0,-1,'2024-10-21 13:22:05','2024-10-21 13:22:05','hadesDbSvcUser@172.19.0.1'),(100303,'QATestingP7XS',NULL,1,'v4vjVkwwELZ02QjWNt17ZgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukwkipzq7uzauhp_242110133954','2024-10-22 13:39:54',NULL,0,-1,'2024-10-21 13:39:54','2024-10-21 13:39:54','hadesDbSvcUser@172.19.0.1'),(100304,'QATestingQQ1G',NULL,1,'jMILYwm/QQCAUTOJphUwCwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukxqveapsbkrq2m_242210050858','2024-10-23 05:08:58',NULL,0,-1,'2024-10-22 05:08:58','2024-10-22 05:08:58','hadesDbSvcUser@172.19.0.1'),(100305,'QATestingGV5W',NULL,1,'sYAJlpT7luoJjMHE9zqlNgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicukyajddm86gi1bp_242210122023','2024-10-23 12:20:23',NULL,0,-1,'2024-10-22 12:20:23','2024-10-22 12:20:23','hadesDbSvcUser@172.19.0.1'),(100306,'QATestingBT5C',NULL,1,'YYtLnVLCx+D6F354FFWCbQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicul01t37rbtsvg0w_242310112820','2024-10-24 11:28:20',NULL,0,-1,'2024-10-23 11:28:20','2024-10-23 11:28:20','hadesDbSvcUser@172.19.0.1'),(100307,'QATesting5BB8',NULL,1,'xkbh4+3vEBVFMQ/5MtG7XAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicul01t8hnd0dic4l_242310112825','2024-10-24 11:28:25',NULL,0,-1,'2024-10-23 11:28:25','2024-10-23 11:28:25','hadesDbSvcUser@172.19.0.1'),(100308,'Sundar','$2a$10$RAHK0DzTNuI50O32CsaAue134muGozCnxUL8kSFPlT9jYKJC1YVtW',1,'1BFrfqObR60AiZL4ISqa+FD/JQhID6xtIntMLNTYAsQ=',-1,1,'3wnjeyicul1s5csi3yb0rcz_242410101554','2024-10-24 20:43:27','$2a$10$RAHK0DzTNuI50O32CsaAue',0,-1,'2024-10-24 10:15:54','2024-10-24 20:43:27','hadesDbSvcUser@172.19.0.1'),(100309,'QATesting0Q3M',NULL,1,'Ha1aGGh9FcHUAlRJMijFdQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicul1u4jkn7ojufo0_242410105917','2024-10-25 10:59:17',NULL,0,-1,'2024-10-24 10:59:17','2024-10-24 10:59:17','hadesDbSvcUser@172.19.0.1'),(100310,'Sriram','$2a$10$MJm06oNaqfgdtMfsb0SKw.eRGqDthgZ4GG/tziS8iDTSKf5OslaRy',1,'Lhn7qhjO1gfI8UiT0IFjp6H0ot+k86WbxHgYWoXL28M=',-1,1,'3wnjeyicul32fmisym5rkq2_242510031116','2024-10-25 03:12:24','$2a$10$MJm06oNaqfgdtMfsb0SKw.',0,-1,'2024-10-25 02:45:32','2024-10-25 03:12:24','hadesDbSvcUser@172.19.0.1'),(100311,'임수정','$2a$10$weLYNR2IvjG.zhhlayDAs.LjJMt63SU2VPvCtnc3kzM.L5XTM0rry',1,'NYl3VREtyiLIYFeIZKQ8NJki4ciB+M5QlFOMGo08lhI=',-1,1,'3wnjeyicul8ghqlfd5sh2yj_242810020819','2024-10-28 02:09:22','$2a$10$weLYNR2IvjG.zhhlayDAs.',0,-1,'2024-10-28 02:08:19','2024-10-28 02:09:22','hadesDbSvcUser@172.19.0.1'),(100312,'조가빈','$2a$10$XkflzuAYDBbPjGfJ965p3OxVsboSF8AhweZzrHv64c1axfhN4ojWy',1,'zownrX9EfYc1afL1cjn5zTNzrr4mtk5NLAYy0reDm/uwnpVlz+3yv/R3PcjKwd0c',-1,1,NULL,NULL,'$2a$10$XkflzuAYDBbPjGfJ965p3O',0,-1,'2024-10-28 05:37:24','2024-10-28 05:37:24','hadesDbSvcUser@172.19.0.1'),(100313,'상탁_테스트',NULL,1,'EVbHRtbVqtG4K21p3YDVlFpzioa/woihw37t3uogNfoaEuXozxmytmKkUVCPQoi+',-1,1,'3wnjeyicul8r0i4j29ixy7l_242810055907','2024-10-29 05:59:07',NULL,0,-1,'2024-10-28 05:59:07','2024-10-28 05:59:07','hadesDbSvcUser@172.19.0.1'),(100314,'Ayush',NULL,1,'EVbHRtbVqtG4K21p3YDVlAaXyqNdp5MxwGpmBJYdJCQaEuXozxmytmKkUVCPQoi+',-1,1,'3wnjeyicul8rbmy4tliftkk_242810060554','2024-10-29 06:05:54',NULL,0,-1,'2024-10-28 06:05:54','2024-10-28 06:05:54','hadesDbSvcUser@172.19.0.1'),(100315,'Ayush test',NULL,1,'EVbHRtbVqtG4K21p3YDVlDIBcC7o/1CcqczzGbZhc9oaEuXozxmytmKkUVCPQoi+',-1,1,'3wnjeyicul8rcpljbiu733r_242810060633','2024-10-29 06:06:33',NULL,0,-1,'2024-10-28 06:06:33','2024-10-28 06:06:33','hadesDbSvcUser@172.19.0.1'),(100316,'QATestingNQBT',NULL,1,'ZwlobOYEyoNUuv3ZtVWhYAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicul9a74oeemxv69u_242810125958','2024-10-29 12:59:58',NULL,0,-1,'2024-10-28 12:59:58','2024-10-28 12:59:58','hadesDbSvcUser@172.19.0.1'),(100317,'QATesting7Q9J',NULL,1,'7socnCO/pReSAHY6yvs0lwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicul9bhyzodcqn859_242810132830','2024-10-29 13:28:30',NULL,0,-1,'2024-10-28 13:28:30','2024-10-28 13:28:30','hadesDbSvcUser@172.19.0.1'),(100318,'QATestingJWUA',NULL,1,'VHvwk1oEOpJkIcc40agrvgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicul9br8dsp1dfbzb_242810133409','2024-10-29 13:34:09',NULL,0,-1,'2024-10-28 13:34:09','2024-10-28 13:34:09','hadesDbSvcUser@172.19.0.1'),(100319,'Jongmyung Lee','$2a$10$DwCGr6bBPa9e1bqP7IiPDuQkvsCZSZQZkITKnehNY9G.iCX7SykNu',1,'HqBFEot+6JKZhxR61KdpB6H0ot+k86WbxHgYWoXL28M=',-1,1,'3wnjeyiculch2xk1lf7iz2j_243010070009','2024-10-30 07:01:00','$2a$10$DwCGr6bBPa9e1bqP7IiPDu',0,-1,'2024-10-30 07:00:09','2024-10-30 07:01:00','hadesDbSvcUser@172.19.0.1'),(100320,'Soham','$2a$10$NVlu0NqOAnNzvVhTeSIAT.YXQpE3ht/aIonu5VTMNSxc0G2iSAqhW',1,'7hVxEnK8QN11MEApFBcgKU1ceNsz5vfRMRvOnqoGHYsFQ5puelDI29EHArmO7plI',-1,1,'3wnjeyiculcnh190yzm3yuz_243010092022','2024-10-30 09:26:13','$2a$10$NVlu0NqOAnNzvVhTeSIAT.',0,-1,'2024-10-30 09:20:22','2024-10-30 09:26:13','hadesDbSvcUser@172.19.0.1'),(100321,'Niraj Vadher','$2a$10$L9BH2V56qIZdSF8H6u93eOgorAhbgPq/QyNgnOcDeorAX84qQyFJa',1,'AH9nmE2PljkODKBEmb4cxxL0wWD4oRIJL0XuStvlcuS+FC+IGUE0F7ce5H/J/Ayw',-1,1,'3wnjeyicullkszv18kdsoci_240411064925','2024-11-04 06:49:58','$2a$10$L9BH2V56qIZdSF8H6u93eO',0,-1,'2024-11-04 06:49:25','2024-11-04 06:49:58','hadesDbSvcUser@172.19.0.1'),(100322,'QATestingOZBF',NULL,1,'jf9MwYGuovJUBzVON3RYugIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyiculnj968z7e7jbks_240511083452','2024-11-06 08:34:52',NULL,0,-1,'2024-11-05 08:34:52','2024-11-05 08:34:52','hadesDbSvcUser@172.19.0.1'),(100323,'QATestingGNK3',NULL,1,'izAwWniRqTZWfZW0yMwKzAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyiculnlj8xn7oix4yo_240511092452','2024-11-06 09:24:52',NULL,0,-1,'2024-11-05 09:24:52','2024-11-05 09:24:52','hadesDbSvcUser@172.19.0.1'),(100324,'QATestingSL5O',NULL,1,'Hz9BnjXKcqxezyLrlFxsJAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyiculnmj6dmfbm09hl_240511094646','2024-11-06 09:46:46',NULL,0,-1,'2024-11-05 09:46:46','2024-11-05 09:46:46','hadesDbSvcUser@172.19.0.1'),(100325,'QATestingJ9C7',NULL,1,'37neKV6yryFYt77KJuFNlAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyiculnum3y3o8tt07x_240511124403','2024-11-06 12:44:03',NULL,0,-1,'2024-11-05 12:44:03','2024-11-05 12:44:03','hadesDbSvcUser@172.19.0.1'),(100326,'QATestingYJ8X',NULL,1,'Dq7qhRpK2HAIdM33tIJW3wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyiculnw3recfclqzmr_240511131645','2024-11-06 13:16:45',NULL,0,-1,'2024-11-05 13:16:45','2024-11-05 13:16:45','hadesDbSvcUser@172.19.0.1'),(100327,'QATesting5C1C',NULL,1,'860siMqZAC7ecz/8TO8BTgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyiculr7t16ok9qy3v6_240711090238','2024-11-08 09:02:38',NULL,0,-1,'2024-11-07 09:02:38','2024-11-07 09:02:38','hadesDbSvcUser@172.19.0.1'),(100328,'QATesting1PC8',NULL,1,'pCZ5uCW8ks/WgaqocqtnaAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyiculrgz13a8vpz63g_240711122344','2024-11-08 12:23:44',NULL,0,-1,'2024-11-07 12:23:44','2024-11-07 12:23:44','hadesDbSvcUser@172.19.0.1'),(100329,'Harsh Jain','$2a$10$a0Zkor..fq4Ofo90nsmOae4aI0CpJ3SMsjW4OiVNPHmwjH/kaMoju',1,'3vAzqmz6DTiloR/rGr7L+nsQzcCtEsLGZtL1oqhOTOw=',-1,1,'3wnjeyiculss85sytm8bl2a_240811054020','2024-11-08 05:41:09','$2a$10$a0Zkor..fq4Ofo90nsmOae',0,-1,'2024-11-08 05:32:39','2024-11-08 05:41:09','hadesDbSvcUser@172.19.0.1'),(100330,'Akshay Naik','$2a$10$UsdDjaAZKgzwJ2ipSkevUeFWdIByd7Qq8hRu4OHh1gSLhLikqj6o2',1,'wBBNKoOuCoyMJncXCVWmJYzLVuxq2qSNdOCBi2XOIyddVitfI+Fcgu2C+noYobni',-1,1,'e2cqp1u32av8h8t6io7ayk_240212072332','2024-12-02 07:23:59','$2a$10$UsdDjaAZKgzwJ2ipSkevUe',0,-1,'2024-11-08 05:33:24','2024-12-02 07:23:59','hadesDbSvcUser@172.19.0.1'),(100331,'Deep Patel','$2a$10$c9Ih61/gR3ya8o7fN1LVHePpaazlujzWJX5NuTMBdIyDQ4Rm0tBzy',1,'Nb4u/m2mW+BR4Fjn7vIbjnhH8rVHzwMHHwtKSNvBXpJuHax/6udH1fEVWWptrbE8',-1,1,'3wnjeyiculstl0sb1epzez6_240811061006','2024-11-08 06:10:29','$2a$10$c9Ih61/gR3ya8o7fN1LVHe',0,-1,'2024-11-08 06:10:06','2024-11-08 06:10:29','hadesDbSvcUser@172.19.0.1'),(100332,'QATestingL7Z7',NULL,1,'OPX8jxDcIcdBfkdJ8GYXyQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicultal11ac017a5w_240811122302','2024-11-09 12:23:02',NULL,0,-1,'2024-11-08 12:23:02','2024-11-08 12:23:02','hadesDbSvcUser@172.19.0.1'),(100333,'QATesting2NPH',NULL,1,'MrQqt1QHIByQ2YxxK5fU9gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyiculyqbasr776bwge_241111115645','2024-11-12 11:56:45',NULL,0,-1,'2024-11-11 11:56:45','2024-11-11 11:56:45','hadesDbSvcUser@172.19.0.1'),(100334,'QATestingR4D0',NULL,1,'BfGlCGsbI/JLIjibzEmiEQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyiculytcrg17wxaabs_241111130327','2024-11-12 13:03:27',NULL,0,-1,'2024-11-11 13:03:27','2024-11-11 13:03:27','hadesDbSvcUser@172.19.0.1'),(100335,'Yumin','$2a$10$Pm5LkfSnWmEi01aappNiCu8rWn/DY1u67BGmmjK2dJHfz.23GLmJq',1,'8md5EHxtRE/6kOOZQaH3AaH0ot+k86WbxHgYWoXL28M=',-1,1,'3wnjeyiculzyut0j6x4zbf0_241211041351','2024-11-12 04:14:18','$2a$10$Pm5LkfSnWmEi01aappNiCu',0,-1,'2024-11-12 04:13:52','2024-11-12 04:14:18','hadesDbSvcUser@172.19.0.1'),(100336,'QATestingSHK8',NULL,1,'u67NoSQ+A/k9rw4eGEtcoQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum0nd0e1ufmmmu0_241211131126','2024-11-13 13:11:26',NULL,0,-1,'2024-11-12 13:11:26','2024-11-12 13:11:26','hadesDbSvcUser@172.19.0.1'),(100337,'QATestingHZNZ',NULL,1,'cFy5Ucp/SA9z6qYTrC3QJwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum0oag7cthh1ok0_241211133149','2024-11-13 13:31:49',NULL,0,-1,'2024-11-12 13:31:49','2024-11-12 13:31:49','hadesDbSvcUser@172.19.0.1'),(100338,'Mithilesh Joshi','$2a$10$23cak8GcuHweeUwqceu8MOeWO3tSeF6jG9mjoK9Fmhhi20KdEYJf2',1,'QMOz7lqGVRjdrQdPq3VTkvNKanrdrAPOiCbP0QVxDdtuHax/6udH1fEVWWptrbE8',-1,1,'3wnjeyicum1wrsvlw9rc2u4_241311054737','2024-11-13 05:48:09','$2a$10$23cak8GcuHweeUwqceu8MO',0,-1,'2024-11-13 05:47:37','2024-11-13 05:48:09','hadesDbSvcUser@172.19.0.1'),(100339,'Geonha Hwang','$2a$10$9YWTbWXtwzthDEc08Sgz8uHlTSdFS2wAhwi40AwAtrsWVbecGkGH.',1,'8HfYiASZTTlkdU4DurY03Jki4ciB+M5QlFOMGo08lhI=',-1,1,'52achnp8axtpy17xpglau_241912062411','2024-12-19 06:24:33','$2a$10$9YWTbWXtwzthDEc08Sgz8u',0,-1,'2024-11-13 06:00:27','2024-12-19 06:24:33','hadesDbSvcUser@172.19.0.1'),(100340,'QATestingG0KS',NULL,1,'iKh7URGMGIl7XFjfJPM4MQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum23jkbc89p6kdt_241311081609','2024-11-14 08:16:09',NULL,0,-1,'2024-11-13 08:16:09','2024-11-13 08:16:09','hadesDbSvcUser@172.19.0.1'),(100341,'QATestingHVY2',NULL,1,'PCw5AescmkekAsvw+3X9hgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum242atg6br1n5n_241311082734','2024-11-14 08:27:34',NULL,0,-1,'2024-11-13 08:27:34','2024-11-13 08:27:34','hadesDbSvcUser@172.19.0.1'),(100342,'QATesting65LH',NULL,1,'p5EQ7OhhWiMkPKN3oV3YxQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum24n73larllwze_241311084018','2024-11-14 08:40:18',NULL,0,-1,'2024-11-13 08:40:18','2024-11-13 08:40:18','hadesDbSvcUser@172.19.0.1'),(100343,'QATestingGYV8',NULL,1,'szi2ZNwkZwyNqIWEHG/QUQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum24qyh4uai41pd_241311084236','2024-11-14 08:42:36',NULL,0,-1,'2024-11-13 08:42:36','2024-11-13 08:42:36','hadesDbSvcUser@172.19.0.1'),(100344,'QATestingD5N5',NULL,1,'2Rlb8Rttt3uAGLqezB3OdAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum27h1fs9dqvrz4_241311094222','2024-11-14 09:42:22',NULL,0,-1,'2024-11-13 09:42:22','2024-11-13 09:42:22','hadesDbSvcUser@172.19.0.1'),(100345,'QATestingGRYG',NULL,1,'8hPmy33n/vBjucBxd0fxMwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum27pn1ptmhfyiu_241311094736','2024-11-14 09:47:36',NULL,0,-1,'2024-11-13 09:47:36','2024-11-13 09:47:36','hadesDbSvcUser@172.19.0.1'),(100346,'QATestingGUDL',NULL,1,'jxnvUelMeYoAXp9MereDLQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum282537o1abw82_241311095513','2024-11-14 09:55:13',NULL,0,-1,'2024-11-13 09:55:13','2024-11-13 09:55:13','hadesDbSvcUser@172.19.0.1'),(100347,'QATesting216M',NULL,1,'eT4a07C5POcxhQSo4PpOYgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum284s21lxee423_241311095650','2024-11-14 09:56:50',NULL,0,-1,'2024-11-13 09:56:50','2024-11-13 09:56:50','hadesDbSvcUser@172.19.0.1'),(100348,'QATestingJR7E',NULL,1,'Wq4bSR8UIHerS2oj52vnrQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum29oml05k6n52u_241311103052','2024-11-14 10:30:52',NULL,0,-1,'2024-11-13 10:30:52','2024-11-13 10:30:52','hadesDbSvcUser@172.19.0.1'),(100349,'QATestingU0VQ',NULL,1,'XnZBf98bbM7okPBwIU/RPQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum2fyfit6xzk4f0_241311124827','2024-11-14 12:48:27',NULL,0,-1,'2024-11-13 12:48:27','2024-11-13 12:48:27','hadesDbSvcUser@172.19.0.1'),(100350,'QATestingHZMT',NULL,1,'ZAoRFRcYATuPUp08B/7NywIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum2gj2vb1kuhuh6_241311130102','2024-11-14 13:01:02',NULL,0,-1,'2024-11-13 13:01:02','2024-11-13 13:01:02','hadesDbSvcUser@172.19.0.1'),(100351,'QATesting4UK5',NULL,1,'avIDtHRt8YALb4+WYl403QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum2ijfwc7qjb77h_241311134508','2024-11-14 13:45:08',NULL,0,-1,'2024-11-13 13:45:08','2024-11-13 13:45:08','hadesDbSvcUser@172.19.0.1'),(100352,'QATestingZGSQ',NULL,1,'tMohNf4UhsksQNJKKZWgbgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum3s64i6bijewl4_241411062607','2024-11-15 06:26:07',NULL,0,-1,'2024-11-14 06:26:07','2024-11-14 06:26:07','hadesDbSvcUser@172.19.0.1'),(100353,'QATesting2QXA',NULL,1,'hfSNgQXvr3CrFHcQ4bJ+zAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum3w1zk8kcib0ex_241411075121','2024-11-15 07:51:21',NULL,0,-1,'2024-11-14 07:51:21','2024-11-14 07:51:21','hadesDbSvcUser@172.19.0.1'),(100354,'QATesting0TD4',NULL,1,'IwakwkFVecDRnmyuOS+SPwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum41vttccxxg3cy_241411095913','2024-11-15 09:59:13',NULL,0,-1,'2024-11-14 09:59:13','2024-11-14 09:59:13','hadesDbSvcUser@172.19.0.1'),(100355,'QATestingD7PZ',NULL,1,'TFXxo2RzCT6ywDxgEVFM2wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum42g1gmwe15jfb_241411101132','2024-11-15 10:11:32',NULL,0,-1,'2024-11-14 10:11:32','2024-11-14 10:11:32','hadesDbSvcUser@172.19.0.1'),(100356,'QATestingDKZF',NULL,1,'xXWEbC3gpmLhN39CpC7odAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum43bagrcloq78a_241411103034','2024-11-15 10:30:34',NULL,0,-1,'2024-11-14 10:30:34','2024-11-14 10:30:34','hadesDbSvcUser@172.19.0.1'),(100357,'QATestingQ4HY',NULL,1,'tJeC7uPYotU3XOw0yeemBQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum46v242hzzcl0m_241411114826','2024-11-15 11:48:26',NULL,0,-1,'2024-11-14 11:48:26','2024-11-14 11:48:26','hadesDbSvcUser@172.19.0.1'),(100358,'QATestingJEFU',NULL,1,'w4txFj5LrfmnzQz6F1o7WgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum489dspmcfk1rd_241411121906','2024-11-15 12:19:06',NULL,0,-1,'2024-11-14 12:19:06','2024-11-14 12:19:06','hadesDbSvcUser@172.19.0.1'),(100359,'QATestingVUT7',NULL,1,'OV/+1LE5UMs29lUzB2y/KAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum48pxu9bz7esy7_241411122911','2024-11-15 12:29:11',NULL,0,-1,'2024-11-14 12:29:11','2024-11-14 12:29:11','hadesDbSvcUser@172.19.0.1'),(100360,'QATestingRTDS',NULL,1,'1ntHpBX/mc6LTxI/JZcl6AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum4a787jwo2sgpl_241411130139','2024-11-15 13:01:39',NULL,0,-1,'2024-11-14 13:01:39','2024-11-14 13:01:39','hadesDbSvcUser@172.19.0.1'),(100361,'QATestingMV5D',NULL,1,'3YygrUOfCK+GJ4egSpcmGgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicum4ckteqm6rzm72_241411135349','2024-11-15 13:53:49',NULL,0,-1,'2024-11-14 13:53:49','2024-11-14 13:53:49','hadesDbSvcUser@172.19.0.1'),(100362,'Jongmyung','$2a$10$4XAJzFicrxIKNLUPfPkD5ejMahcQvxCQqA/nFHbDh0/ctCK0NTGUK',1,'WKCOTPFQDakmG4umqpWc9B8wOytfk2HyLe6EmbfQVQ4=',-1,1,'3wnjeyicumavzv87tlk9qzm_241811035810','2024-11-18 04:01:18','$2a$10$4XAJzFicrxIKNLUPfPkD5e',0,-1,'2024-11-18 03:58:10','2024-11-18 04:01:18','hadesDbSvcUser@172.19.0.1'),(100363,'QATestingRDG1',NULL,1,'7Q27ZUtwEwf3nfkU9xTMkgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicumblbgs50g3h4ld_241811131339','2024-11-19 13:13:39',NULL,0,-1,'2024-11-18 13:13:39','2024-11-18 13:13:39','hadesDbSvcUser@172.19.0.1'),(100364,'QATesting2RRA',NULL,1,'uLjnyqhQXoKLzJ22rPzeeQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicumbld0ed5ivizsr_241811131436','2024-11-19 13:14:36',NULL,0,-1,'2024-11-18 13:14:36','2024-11-18 13:14:36','hadesDbSvcUser@172.19.0.1'),(100365,'QATestingERHU',NULL,1,'+vwpw+8t6vmYk/UQY9+gKQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicumdgzcf35huvcpl_241911135759','2024-11-20 13:57:59',NULL,0,-1,'2024-11-19 13:57:59','2024-11-19 13:57:59','hadesDbSvcUser@172.19.0.1'),(100366,'QATestingUC6C',NULL,1,'xSdxgtLXVc59NPb3LpZLEgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicumenevaldoxdbor_242011052848','2024-11-21 05:28:48',NULL,0,-1,'2024-11-20 05:28:48','2024-11-20 05:28:48','hadesDbSvcUser@172.19.0.1'),(100367,'QATestingK8LX',NULL,1,'N850RUTfTacEVHodX6WopwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicumf03k6ti9bx3i2_242011100705','2024-11-21 10:07:05',NULL,0,-1,'2024-11-20 10:07:05','2024-11-20 10:07:05','hadesDbSvcUser@172.19.0.1'),(100368,'QATesting3RBI',NULL,1,'DPPx+H4msRCOA+WpGtvG7AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicumf0icy44z15rhr_242011101606','2024-11-21 10:16:06',NULL,0,-1,'2024-11-20 10:16:06','2024-11-20 10:16:06','hadesDbSvcUser@172.19.0.1'),(100369,'QATesting0RY3',NULL,1,'6A3rP5FGjPK7+94dD+DwyQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicumf6disl6r4g42h_242011122447','2024-11-21 12:24:47',NULL,0,-1,'2024-11-20 12:24:47','2024-11-20 12:24:47','hadesDbSvcUser@172.19.0.1'),(100370,'QATestingNFCN',NULL,1,'h5Z0nDbpUGup57ZIavl4kAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicumfa8l0enk7vm8c_242011134931','2024-11-21 13:49:31',NULL,0,-1,'2024-11-20 13:49:31','2024-11-20 13:49:31','hadesDbSvcUser@172.19.0.1'),(100371,'QATesting8UMW',NULL,1,'34wHjClNpkYzSEyezEiBMwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicumgtuzcxxdild38_242111100942','2024-11-22 10:09:42',NULL,0,-1,'2024-11-21 10:09:42','2024-11-21 10:09:42','hadesDbSvcUser@172.19.0.1'),(100372,'QATestingKDLZ',NULL,1,'KAo79RzsIrELx9jHJ4WhLwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicumh2pceox88mxrx_242111132342','2024-11-22 13:23:42',NULL,0,-1,'2024-11-21 13:23:42','2024-11-21 13:23:42','hadesDbSvcUser@172.19.0.1'),(100373,'Eunsoo choe','$2a$10$3qGm9HB1IxVZmxpjr.L7yO4.xedcCN6cvUqcNcvmjNNJBdzw7mvzO',1,'ZRa6HR85rotIsOKdFBelafG7eBhK375QlnQo3lVX23Y=',-1,1,'3wnjeyicumnqh59ec7ur26h_242511050334','2024-11-26 05:03:34','$2a$10$3qGm9HB1IxVZmxpjr.L7yO',0,-1,'2024-11-25 04:55:57','2024-11-25 05:03:34','hadesDbSvcUser@172.19.0.1'),(100374,'QATestingKHNI',NULL,1,'CDhzpZEtQkmjbAT9+eNp6QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicumnq6vxqt73itlm_242511045719','2024-11-26 04:57:19',NULL,0,-1,'2024-11-25 04:57:19','2024-11-25 04:57:19','hadesDbSvcUser@172.19.0.1'),(100375,'QATestingO89G',NULL,1,'GZXLm7STFt9L2OMtAMVP8AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b0zsjyacgh6fec_242711053741','2024-11-28 05:37:41',NULL,0,-1,'2024-11-27 05:37:41','2024-11-27 05:37:41','hadesDbSvcUser@172.19.0.1'),(100376,'QATestingY59P',NULL,1,'OrmbEpBtbn9z+tMgyy0YkQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b0zsooslja8hxx_242711054543','2024-11-28 05:45:43',NULL,0,-1,'2024-11-27 05:45:43','2024-11-27 05:45:43','hadesDbSvcUser@172.19.0.1'),(100377,'QATesting9IZX',NULL,1,'NDD9a+F5uDRZPMdu4vRlCQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u329zr94hwq8uvsu_242711121807','2024-11-28 12:18:07',NULL,0,-1,'2024-11-27 12:18:07','2024-11-27 12:18:07','hadesDbSvcUser@172.19.0.1'),(100378,'QATestingJD2M',NULL,1,'k9Q+paT8eEdFuhJXNWkDewIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32a5m9m3v0i4sej_242811094356','2024-11-29 09:43:56',NULL,0,-1,'2024-11-28 09:43:56','2024-11-28 09:43:56','hadesDbSvcUser@172.19.0.1'),(100379,'QATesting31X1',NULL,1,'ix8OcwGj6it4zAmyYFv88gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32a5yo1zo4ttn69_242811105930','2024-11-29 10:59:30',NULL,0,-1,'2024-11-28 10:59:30','2024-11-28 10:59:30','hadesDbSvcUser@172.19.0.1'),(100380,'QATesting11BC',NULL,1,'eIDwrpxbD2yOh5waZUP5jQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32a61fz0a132lgr_242811111625','2024-11-29 11:16:25',NULL,0,-1,'2024-11-28 11:16:25','2024-11-28 11:16:25','hadesDbSvcUser@172.19.0.1'),(100381,'QATestingI7PJ',NULL,1,'WSaeE8YX1F3irEeFm7b42gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32aumfzqg1c6nv0_240212050915','2024-12-03 05:09:15',NULL,0,-1,'2024-12-02 05:09:15','2024-12-02 05:09:15','hadesDbSvcUser@172.19.0.1'),(100382,'QATestingW9OS',NULL,1,'ZzoViCAy9FhyFcV4RbM07wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32awn544uo9aso0_240212123215','2024-12-03 12:32:15',NULL,0,-1,'2024-12-02 12:32:15','2024-12-02 12:32:15','hadesDbSvcUser@172.19.0.1'),(100383,'QATestingK5K8',NULL,1,'9PNXs20J7uiyts1gTBhargIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32b2v9q0bo7dprq_240312111800','2024-12-04 11:18:00',NULL,0,-1,'2024-12-03 11:18:00','2024-12-03 11:18:00','hadesDbSvcUser@172.19.0.1'),(100384,'QATesting57EY',NULL,1,'EzkolBYRU6J8iPSQB73LpgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32b2vbhvptd0gxy_240312111818','2024-12-04 11:18:18',NULL,0,-1,'2024-12-03 11:18:18','2024-12-03 11:18:18','hadesDbSvcUser@172.19.0.1'),(100385,'QATestingYOM0',NULL,1,'kCfL9BOV0Xt6wAhflCnVKwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32b3lemm7mpwcjz_240312135716','2024-12-04 13:57:16',NULL,0,-1,'2024-12-03 13:57:16','2024-12-03 13:57:16','hadesDbSvcUser@172.19.0.1'),(100386,'QATestingBD7I',NULL,1,'nrEBPTzLiuniatLkC5veyAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32b7tzwbu3vuday_240412052705','2024-12-05 05:27:05',NULL,0,-1,'2024-12-04 05:27:05','2024-12-04 05:27:05','hadesDbSvcUser@172.19.0.1'),(100387,'QATesting878D',NULL,1,'NFsCX/01BTFvAlO5k5PUNAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32bg5y7q78nwjw2_240512115453','2024-12-06 11:54:53',NULL,0,-1,'2024-12-05 11:54:53','2024-12-05 11:54:53','hadesDbSvcUser@172.19.0.1'),(100388,'QATestingYIF5',NULL,1,'2KSskG5R/Iu7Q/U2kQcL3AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32bl4yfpp0x01oh_240612060540','2024-12-07 06:05:40',NULL,0,-1,'2024-12-06 06:05:40','2024-12-06 06:05:40','hadesDbSvcUser@172.19.0.1'),(100389,'QATesting683E',NULL,1,'sv/n16i169wNX/kMV5HidwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32blcyx6ghn461x_240612065430','2024-12-07 06:54:30',NULL,0,-1,'2024-12-06 06:54:30','2024-12-06 06:54:30','hadesDbSvcUser@172.19.0.1'),(100390,'QATestingYXGT',NULL,1,'1u3In73TwJRpiWk58IvHqwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32blgsvc1sntt1c_240612071751','2024-12-07 07:17:51',NULL,0,-1,'2024-12-06 07:17:51','2024-12-06 07:17:51','hadesDbSvcUser@172.19.0.1'),(100391,'QATestingPQJ9',NULL,1,'zQj8IvnLxq6ZOlz4hJE5WgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32bmtn2wg3efdtj_240612121528','2024-12-07 12:15:28',NULL,0,-1,'2024-12-06 12:15:28','2024-12-06 12:15:28','hadesDbSvcUser@172.19.0.1'),(100392,'QATesting5DTR',NULL,1,'DFXquplR/EfaHR1s+ntblQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32bmu0g0v3tz9wz_240612121743','2024-12-07 12:17:43',NULL,0,-1,'2024-12-06 12:17:43','2024-12-06 12:17:43','hadesDbSvcUser@172.19.0.1'),(100393,'QATestingTUQP',NULL,1,'lP5k55xaM8NvdLoG9XCx4QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u32bmv9j5b9dg12b_240612122521','2024-12-07 12:25:21',NULL,0,-1,'2024-12-06 12:25:21','2024-12-06 12:25:21','hadesDbSvcUser@172.19.0.1'),(100394,'Test Seller Down','$2a$10$1OCALgoVoIMnIBCMVVDrDeqbHYQzKYFZ5V.mKXEefMS7eJiSi6d7u',1,'9mLzIopiW7zTMy1fpYvhcNzNkIFTwu5TVmvD2yLkMdU6uwIxMGUOYSdM4v8ty+2E',-1,1,NULL,NULL,'$2a$10$1OCALgoVoIMnIBCMVVDrDe',0,-1,'2024-12-09 05:29:57','2024-12-09 05:29:57','hadesDbSvcUser@172.19.0.1'),(100395,'QATestingL7XF',NULL,1,'qOhFdRi0Nkvxf04fl0T8VQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'i88g5yx8aimurc7el9de_240912090204','2024-12-10 09:02:04',NULL,0,-1,'2024-12-09 09:02:04','2024-12-09 09:02:04','hadesDbSvcUser@172.19.0.1'),(100396,'QATestingQQFT',NULL,1,'rRigtcnnx3tcajm6jS30lQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'i88g5yx8aimwzjk4o376_240912091233','2024-12-10 09:12:33',NULL,0,-1,'2024-12-09 09:12:33','2024-12-09 09:12:33','hadesDbSvcUser@172.19.0.1'),(100397,'QATestingN444',NULL,1,'tEbc9BzDN4IMaYDnWkkPCQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'i88g5yx8aio4pp5zmvrk_240912123808','2024-12-10 12:38:08',NULL,0,-1,'2024-12-09 12:38:08','2024-12-09 12:38:08','hadesDbSvcUser@172.19.0.1'),(100398,'QATestingOH8O',NULL,1,'FWtn+ZJo0JPfFCwSGuYs4AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'i88g5yx8aiobfw8vpq16_240912130946','2024-12-10 13:09:46',NULL,0,-1,'2024-12-09 13:09:46','2024-12-09 13:09:46','hadesDbSvcUser@172.19.0.1'),(100399,'QATestingHRHD',NULL,1,'G5TfRYtJFkJiofeINfBC9wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8ax8s5evnhcmih_241012094457','2024-12-11 09:44:57',NULL,0,-1,'2024-12-10 09:44:57','2024-12-10 09:44:57','hadesDbSvcUser@172.19.0.1'),(100400,'QATestingU44D',NULL,1,'wSYohY8ZTaAv06UdPsfrLgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8ax8uuzxcj6y0e_241012103050','2024-12-11 10:30:50',NULL,0,-1,'2024-12-10 10:30:50','2024-12-10 10:30:50','hadesDbSvcUser@172.19.0.1'),(100401,'QATestingZIEI',NULL,1,'+vCMZ867awOl8PpkzCcdwwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8ax94bt6sqgkqs_241012131104','2024-12-11 13:11:04',NULL,0,-1,'2024-12-10 13:11:04','2024-12-10 13:11:04','hadesDbSvcUser@172.19.0.1'),(100402,'QATestingX9QR',NULL,1,'ljGZ3/EQj3fzEkpUY1XjiQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8ax94r331a71bw_241012131815','2024-12-11 13:18:15',NULL,0,-1,'2024-12-10 13:18:15','2024-12-10 13:18:15','hadesDbSvcUser@172.19.0.1'),(100403,'QATesting1D7K',NULL,1,'BNZfXSS+ZYHVHam0ui735wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8ax95065stcypd_241012132232','2024-12-11 13:22:32',NULL,0,-1,'2024-12-10 13:22:32','2024-12-10 13:22:32','hadesDbSvcUser@172.19.0.1'),(100404,'QATestingB7ME',NULL,1,'qvS33W7Mg+Au58nQudpiRAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8ax95apxyays3x_241012132729','2024-12-11 13:27:29',NULL,0,-1,'2024-12-10 13:27:29','2024-12-10 13:27:29','hadesDbSvcUser@172.19.0.1'),(100405,'QATestingA4BD',NULL,1,'pG1MMY0CvP7bSof2OKPMbgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8ax9c7q3r8cqz0_241012152434','2024-12-11 15:24:34',NULL,0,-1,'2024-12-10 15:24:34','2024-12-10 15:24:34','hadesDbSvcUser@172.19.0.1'),(100406,'QATesting8GSD',NULL,1,'LlSwbnP9QRQrW/R4d+FEWgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axaqvjr9mdtbo_241112054206','2024-12-12 05:42:06',NULL,0,-1,'2024-12-11 05:42:06','2024-12-11 05:42:06','hadesDbSvcUser@172.19.0.1'),(100407,'QATestingPSI1',NULL,1,'5Msllmn0p4taCgZanqJI5AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axasj5r814zmj_241112061008','2024-12-12 06:10:08',NULL,0,-1,'2024-12-11 06:10:08','2024-12-11 06:10:08','hadesDbSvcUser@172.19.0.1'),(100408,'QATestingYDA4',NULL,1,'7zWbiVjNylmlG/L3FNPONQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axawre6f4kcue_241112072142','2024-12-12 07:21:42',NULL,0,-1,'2024-12-11 07:21:42','2024-12-11 07:21:42','hadesDbSvcUser@172.19.0.1'),(100409,'QATestingBREY',NULL,1,'cx/SDPxgMsshlTmDQI+aHgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axax4fd31ojtd_241112072750','2024-12-12 07:27:50',NULL,0,-1,'2024-12-11 07:27:50','2024-12-11 07:27:50','hadesDbSvcUser@172.19.0.1'),(100410,'QATesting4RMG',NULL,1,'YkxM6vrNJGktzp4txXe6UQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axd82l9dltft8_241212065153','2024-12-13 06:51:53',NULL,0,-1,'2024-12-12 06:51:53','2024-12-12 06:51:53','hadesDbSvcUser@172.19.0.1'),(100411,'QATesting26QG',NULL,1,'UThlF5Gdcju6j6smhCpHIQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axd8v8itev1d4_241212070521','2024-12-13 07:05:21',NULL,0,-1,'2024-12-12 07:05:21','2024-12-12 07:05:21','hadesDbSvcUser@172.19.0.1'),(100412,'QATesting3QZB',NULL,1,'gmbNuwvXbKM5JVpFBO88ggIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axdys3ezrns7m_241212142358','2024-12-13 14:23:58',NULL,0,-1,'2024-12-12 14:23:58','2024-12-12 14:23:58','hadesDbSvcUser@172.19.0.1'),(100413,'QATesting7XFE',NULL,1,'LzJvqHnRg3jpAvqZAp+I8wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axg40qdp5lir1_241312121123','2024-12-14 12:11:23',NULL,0,-1,'2024-12-13 12:11:23','2024-12-13 12:11:23','hadesDbSvcUser@172.19.0.1'),(100414,'QATestingGIDU',NULL,1,'ngdR2jXgGmTf0ci9P4u95QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axn452qsnox5g_241612111857','2024-12-17 11:18:57',NULL,0,-1,'2024-12-16 11:18:57','2024-12-16 11:18:57','hadesDbSvcUser@172.19.0.1'),(100415,'QATesting2Z6Q',NULL,1,'rIveeaan9ve4Fn7TU8O5WgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axn96ijar9d3u_241612124415','2024-12-17 12:44:15',NULL,0,-1,'2024-12-16 12:44:15','2024-12-16 12:44:15','hadesDbSvcUser@172.19.0.1'),(100416,'QATestingM2S8',NULL,1,'+bJNWUGGc8HWLYIQP0OobQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axnbj7k5kub8s_241612132405','2024-12-17 13:24:05',NULL,0,-1,'2024-12-16 13:24:05','2024-12-16 13:24:05','hadesDbSvcUser@172.19.0.1'),(100417,'QATestingWSNZ',NULL,1,'rrnOcM+Vfd4xIEiywl5yXwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axp0c9oqp7ggg_241712063320','2024-12-18 06:33:20',NULL,0,-1,'2024-12-17 06:33:20','2024-12-17 06:33:20','hadesDbSvcUser@172.19.0.1'),(100418,'QATestingEMJX',NULL,1,'k71BBun6tpDM8ONBDqDBpAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axp7xhnwmsdkb_241712084148','2024-12-18 08:41:48',NULL,0,-1,'2024-12-17 08:41:48','2024-12-17 08:41:48','hadesDbSvcUser@172.19.0.1'),(100419,'QATestingCBXI',NULL,1,'I4D1yYUUUBYpbmxV11Fe8QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axpbelajgbnsw_241712094037','2024-12-18 09:40:37',NULL,0,-1,'2024-12-17 09:40:37','2024-12-17 09:40:37','hadesDbSvcUser@172.19.0.1'),(100420,'QATestingQF9H',NULL,1,'iyE0YnsMPaN+AVEOHzh62AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axpihvdl4tjb6_241712114039','2024-12-18 11:40:39',NULL,0,-1,'2024-12-17 11:40:39','2024-12-17 11:40:39','hadesDbSvcUser@172.19.0.1'),(100421,'QATestingPHWO',NULL,1,'No96R4DnUpHGPr68ou/mxAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axpnegf75w717_241712130341','2024-12-18 13:03:41',NULL,0,-1,'2024-12-17 13:03:41','2024-12-17 13:03:41','hadesDbSvcUser@172.19.0.1'),(100422,'QATestingCB4H',NULL,1,'G1ecWYn8MNZ+p0fULFkHawIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axpniwxrv3o5l_241712130547','2024-12-18 13:05:47',NULL,0,-1,'2024-12-17 13:05:47','2024-12-17 13:05:47','hadesDbSvcUser@172.19.0.1'),(100423,'QATestingT7S6',NULL,1,'2F2zldsurKp23bykiGZPRAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axpnnc2veiddp_241712130751','2024-12-18 13:07:51',NULL,0,-1,'2024-12-17 13:07:51','2024-12-17 13:07:51','hadesDbSvcUser@172.19.0.1'),(100424,'QATestingD2WG',NULL,1,'hRKu7sSjfwqYSnX3IqjQxgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axrerf8peflum_241812065609','2024-12-19 06:56:09',NULL,0,-1,'2024-12-18 06:56:09','2024-12-18 06:56:09','hadesDbSvcUser@172.19.0.1'),(100425,'QATestingKOHI',NULL,1,'xvWLTNc0ixdeyG8cGli4PwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axrh9xkwjmlfo_241812073843','2024-12-19 07:38:43',NULL,0,-1,'2024-12-18 07:38:43','2024-12-18 07:38:43','hadesDbSvcUser@172.19.0.1'),(100426,'QATesting52JJ',NULL,1,'NjGSDxDX78A11LONASw1TwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axrilwjxmk3n5_241812080116','2024-12-19 08:01:16',NULL,0,-1,'2024-12-18 08:01:16','2024-12-18 08:01:16','hadesDbSvcUser@172.19.0.1'),(100427,'QATesting85IE',NULL,1,'GISwlQDy1BQHbxP7hg/iPQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axrkz7l5hiz8l_241812084123','2024-12-19 08:41:23',NULL,0,-1,'2024-12-18 08:41:23','2024-12-18 08:41:23','hadesDbSvcUser@172.19.0.1'),(100428,'QATesting053H',NULL,1,'Vtt1ILfzPWug2IkbD7YH5QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axrrvb6pym936_241812103802','2024-12-19 10:38:02',NULL,0,-1,'2024-12-18 10:38:02','2024-12-18 10:38:02','hadesDbSvcUser@172.19.0.1'),(100429,'QATestingG3CH',NULL,1,'R42giyuYGJCFZGHbIWUz2gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axrux5ltzjskr_241812112941','2024-12-19 11:29:41',NULL,0,-1,'2024-12-18 11:29:41','2024-12-18 11:29:41','hadesDbSvcUser@172.19.0.1'),(100430,'QATestingZLX2',NULL,1,'E3nzXDG2Mbo03mJ9Tsj8dgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axrzgt4ea7k5s_241812124638','2024-12-19 12:46:38',NULL,0,-1,'2024-12-18 12:46:38','2024-12-18 12:46:38','hadesDbSvcUser@172.19.0.1'),(100431,'QATestingM18Z',NULL,1,'mJvwljF0lIMVDXYv30KofwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axs2aqjqcy7qs_241812133433','2024-12-19 13:34:33',NULL,0,-1,'2024-12-18 13:34:33','2024-12-18 13:34:33','hadesDbSvcUser@172.19.0.1'),(100432,'QATestingI4LK',NULL,1,'erRDYssaZAkNyvV8ibYzBgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axsenjza0ly77_241812170342','2024-12-19 17:03:42',NULL,0,-1,'2024-12-18 17:03:42','2024-12-18 17:03:42','hadesDbSvcUser@172.19.0.1'),(100433,'QATesting90PU',NULL,1,'Egn9qCg++0q5xJXreBDR1gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axsifu1pulxoe_241812180746','2024-12-19 18:07:46',NULL,0,-1,'2024-12-18 18:07:46','2024-12-18 18:07:46','hadesDbSvcUser@172.19.0.1'),(100434,'QATesting763B',NULL,1,'RAOdb+sQ/N66WVLLH6gdDwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axsn0ld4pc7rh_241812192515','2024-12-19 19:25:15',NULL,0,-1,'2024-12-18 19:25:15','2024-12-18 19:25:15','hadesDbSvcUser@172.19.0.1'),(100435,'QATesting3GLJ',NULL,1,'jo99ukzHRTFBg+63GJf4pAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axsn97g4cpgvt_241812192918','2024-12-19 19:29:18',NULL,0,-1,'2024-12-18 19:29:18','2024-12-18 19:29:18','hadesDbSvcUser@172.19.0.1'),(100436,'QATesting9LZ8',NULL,1,'X4QTAl2sl4CVxzQ21zwaIwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axtkq85ll28ac_241912045552','2024-12-20 04:55:52',NULL,0,-1,'2024-12-19 04:55:52','2024-12-19 04:55:52','hadesDbSvcUser@172.19.0.1'),(100437,'QATestingLGB5',NULL,1,'3CM+5NfMIkXpFimE3OdkRAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axtn1nld3ghe7_241912053506','2024-12-20 05:35:06',NULL,0,-1,'2024-12-19 05:35:06','2024-12-19 05:35:06','hadesDbSvcUser@172.19.0.1'),(100438,'QATestingMOZG',NULL,1,'vi4nOTpP1vyMyIh+vz8/8AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axtx9pekr8kcq_241912082809','2024-12-20 08:28:09',NULL,0,-1,'2024-12-19 08:28:09','2024-12-19 08:28:09','hadesDbSvcUser@172.19.0.1'),(100439,'QATesting1YWN',NULL,1,'rv0q6qwPLNcJz+stS82aLQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axu1u87maxd57_241912094531','2024-12-20 09:45:31',NULL,0,-1,'2024-12-19 09:45:31','2024-12-19 09:45:31','hadesDbSvcUser@172.19.0.1'),(100440,'QATesting6S0P',NULL,1,'/fhGY0wgYSKn3pnHmHwbawIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axu4uadmzbjvp_241912103619','2024-12-20 10:36:19',NULL,0,-1,'2024-12-19 10:36:19','2024-12-19 10:36:19','hadesDbSvcUser@172.19.0.1'),(100441,'QATestingI069',NULL,1,'3IlpEaOrp9oXnQkpWv/dFgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'52achnp8axu5lag9saw7h_241912104901','2024-12-20 10:49:01',NULL,0,-1,'2024-12-19 10:49:01','2024-12-19 10:49:01','hadesDbSvcUser@172.19.0.1'),(100442,'QATestingM68E',NULL,1,'O5+HAvx1PH+xwAg7d4N5rQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1eef9g3fthk0c_241912114205','2024-12-20 11:42:05',NULL,0,-1,'2024-12-19 11:42:05','2024-12-19 11:42:05','hadesDbSvcUser@172.19.0.1'),(100443,'QATestingP7FU',NULL,1,'Zoz26D0cpbvwvf78XjdXlAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1egmcuex6ywzb_241912135557','2024-12-20 13:55:57',NULL,0,-1,'2024-12-19 13:55:57','2024-12-19 13:55:57','hadesDbSvcUser@172.19.0.1'),(100444,'QATestingCY7K',NULL,1,'w9aR+76aDw2Xt4t34fPUSgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1euyjtga1ng3r_242012042942','2024-12-21 04:29:42',NULL,0,-1,'2024-12-20 04:29:42','2024-12-20 04:29:42','hadesDbSvcUser@172.19.0.1'),(100445,'QATesting623M',NULL,1,'m8Qne4KrpdSR7fAgEGpNvwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1ev4aa907umk4_242012043924','2024-12-21 04:39:24',NULL,0,-1,'2024-12-20 04:39:24','2024-12-20 04:39:24','hadesDbSvcUser@172.19.0.1'),(100446,'QATesting44A5',NULL,1,'57YzcYvT75CYsHNp8t0z2AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1ew2o11akqis4_242012053736','2024-12-21 05:37:36',NULL,0,-1,'2024-12-20 05:37:36','2024-12-20 05:37:36','hadesDbSvcUser@172.19.0.1'),(100447,'QATestingGJF9',NULL,1,'5C8nlgguVTtNQ3PeHDhePQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1ex4rrpklfodf_242012064206','2024-12-21 06:42:06',NULL,0,-1,'2024-12-20 06:42:06','2024-12-20 06:42:06','hadesDbSvcUser@172.19.0.1'),(100448,'QATestingL8C2',NULL,1,'5xnGfYPVXr/frK7oOxGJtQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1ex5h84guupgf_242012064318','2024-12-21 06:43:18',NULL,0,-1,'2024-12-20 06:43:18','2024-12-20 06:43:18','hadesDbSvcUser@172.19.0.1'),(100449,'QATesting9A9O',NULL,1,'sOyhZuB49UOWZaBlBDRQWAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1f0d2zd4h9zi9_242012095859','2024-12-21 09:58:59',NULL,0,-1,'2024-12-20 09:58:59','2024-12-20 09:58:59','hadesDbSvcUser@172.19.0.1'),(100450,'QATestingOWD5',NULL,1,'n/GSNJNi1P4ikRiCGc7c+QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1f22c0liylx9n_242012114239','2024-12-21 11:42:39',NULL,0,-1,'2024-12-20 11:42:39','2024-12-20 11:42:39','hadesDbSvcUser@172.19.0.1'),(100451,'QATestingT2OS',NULL,1,'+sGrq8lIbj4EbYamwHmnaAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1f3vldbgnwaxa_242012133307','2024-12-21 13:33:07',NULL,0,-1,'2024-12-20 13:33:07','2024-12-20 13:33:07','hadesDbSvcUser@172.19.0.1'),(100452,'QATestingUHHO',NULL,1,'fSIRJC+W8oRYtMqOq/6hPQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gun8cj57y3wi_242312051756','2024-12-24 05:17:56',NULL,0,-1,'2024-12-23 05:17:56','2024-12-23 05:17:56','hadesDbSvcUser@172.19.0.1'),(100453,'QATestingH8LV',NULL,1,'Lvr2UTUlXSW29Yw/U/4QBAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gur2pv4ueht9_242312052426','2024-12-24 05:24:26',NULL,0,-1,'2024-12-23 05:24:26','2024-12-23 05:24:26','hadesDbSvcUser@172.19.0.1'),(100454,'QATesting2WM1',NULL,1,'lIeKSZxQ5fB74N/rS6zHuAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gv1avvay4ze3_242312054145','2024-12-24 05:41:45',NULL,0,-1,'2024-12-23 05:41:45','2024-12-23 05:41:45','hadesDbSvcUser@172.19.0.1'),(100455,'QATestingR534',NULL,1,'Si7e5hS7aPIc0UiNwTw3SQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gvtkhm7p6c9z_242312062936','2024-12-24 06:29:36',NULL,0,-1,'2024-12-23 06:29:36','2024-12-23 06:29:36','hadesDbSvcUser@172.19.0.1'),(100456,'QATestingO9GX',NULL,1,'ZbTGSNrGJ1TxOu2/9ZBCtgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gvumvcfupyj8_242312063124','2024-12-24 06:31:24',NULL,0,-1,'2024-12-23 06:31:24','2024-12-23 06:31:24','hadesDbSvcUser@172.19.0.1'),(100457,'QATestingUXH0',NULL,1,'PwDqVFxlPrIGiSBgI5foTwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gw76iovb55f5_242312065238','2024-12-24 06:52:38',NULL,0,-1,'2024-12-23 06:52:38','2024-12-23 06:52:38','hadesDbSvcUser@172.19.0.1'),(100458,'QATesting5E1H',NULL,1,'ctQVSvvISXdh0oiTW8OVLgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gxlw5uv0og8z_242312081828','2024-12-24 08:18:28',NULL,0,-1,'2024-12-23 08:18:28','2024-12-23 08:18:28','hadesDbSvcUser@172.19.0.1'),(100459,'QATesting7HSB',NULL,1,'psolK+j2Lk6YrMKVlFCYoAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gy063zkav85f_242312084238','2024-12-24 08:42:38',NULL,0,-1,'2024-12-23 08:42:38','2024-12-23 08:42:38','hadesDbSvcUser@172.19.0.1'),(100460,'QATestingO60A',NULL,1,'fSb6/QBLmqBHFPhAeGQBIQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gydw9swua9p5_242312090552','2024-12-24 09:05:52',NULL,0,-1,'2024-12-23 09:05:52','2024-12-23 09:05:52','hadesDbSvcUser@172.19.0.1'),(100461,'QATestingD0XO',NULL,1,'Ohm5MPv+W+m8wh2GdH21awIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gyw2epu13nt0_242312093638','2024-12-24 09:36:38',NULL,0,-1,'2024-12-23 09:36:38','2024-12-23 09:36:38','hadesDbSvcUser@172.19.0.1'),(100462,'QATestingQ7NY',NULL,1,'+eFVtchR1C9cTJ+5++LmPQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gzhnhplx0po4_242312101310','2024-12-24 10:13:10',NULL,0,-1,'2024-12-23 10:13:10','2024-12-23 10:13:10','hadesDbSvcUser@172.19.0.1'),(100463,'QATestingFGIT',NULL,1,'+5P72TapgChKb/KdyWPp9QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1gzkl2h94ikbn_242312101808','2024-12-24 10:18:08',NULL,0,-1,'2024-12-23 10:18:08','2024-12-23 10:18:08','hadesDbSvcUser@172.19.0.1'),(100464,'QATestingGMW9',NULL,1,'BI5BDkENzXEfwvciFw+5PgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1h0m0w75rzio2_242312112130','2024-12-24 11:21:30',NULL,0,-1,'2024-12-23 11:21:30','2024-12-23 11:21:30','hadesDbSvcUser@172.19.0.1'),(100465,'QATestingY9T7',NULL,1,'GA9sBii3qM6T6v4zaJJH4wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1h0ocqimg7q9l_242312112527','2024-12-24 11:25:27',NULL,0,-1,'2024-12-23 11:25:27','2024-12-23 11:25:27','hadesDbSvcUser@172.19.0.1'),(100466,'QATestingZFU0',NULL,1,'omqNq8a0UsdqS5QhBQ7FrQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1h1bh1989isve_242312120435','2024-12-24 12:04:35',NULL,0,-1,'2024-12-23 12:04:35','2024-12-23 12:04:35','hadesDbSvcUser@172.19.0.1'),(100467,'QATestingDIIE',NULL,1,'7ObKzLhvhCTgJcFp80sMcAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1h1wktdzzodoz_242312124018','2024-12-24 12:40:18',NULL,0,-1,'2024-12-23 12:40:18','2024-12-23 12:40:18','hadesDbSvcUser@172.19.0.1'),(100468,'QATestingJKN9',NULL,1,'532M2xKiJgrEjVUC8vbUTgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1h1xww46lowre_242312124234','2024-12-24 12:42:34',NULL,0,-1,'2024-12-23 12:42:34','2024-12-23 12:42:34','hadesDbSvcUser@172.19.0.1'),(100469,'QATestingWIEC',NULL,1,'RKoaqAm01eljQyYt/62GCgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1h23lqxfbm3pu_242312125212','2024-12-24 12:52:12',NULL,0,-1,'2024-12-23 12:52:12','2024-12-23 12:52:12','hadesDbSvcUser@172.19.0.1'),(100470,'QATesting7Q88',NULL,1,'TJCpxiyN0Yjf+Rp4gbZJgwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1h3d7yymmoqz7_242312140925','2024-12-24 14:09:25',NULL,0,-1,'2024-12-23 14:09:25','2024-12-23 14:09:25','hadesDbSvcUser@172.19.0.1'),(100471,'QATestingHLN7',NULL,1,'njdjbdvv9s4T6ltSOPOmJQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1h3s50qh3lyxh_242312143440','2024-12-24 14:34:40',NULL,0,-1,'2024-12-23 14:34:40','2024-12-23 14:34:40','hadesDbSvcUser@172.19.0.1'),(100472,'QATesting6M8A',NULL,1,'mdLhmRwhca7Km/NAjmzc3wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1h3sl3fz6phlf_242312143525','2024-12-24 14:35:25',NULL,0,-1,'2024-12-23 14:35:25','2024-12-23 14:35:25','hadesDbSvcUser@172.19.0.1'),(100473,'QATesting3KRO',NULL,1,'j9AJOhl165Fkz0lqfGCphwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1h3yfrxz5629o_242312144519','2024-12-24 14:45:19',NULL,0,-1,'2024-12-23 14:45:19','2024-12-23 14:45:19','hadesDbSvcUser@172.19.0.1'),(100474,'QATestingDCBN',NULL,1,'0H8aZgR0NfUYLHnd7XYp5gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1hkxzf9091lq6_242412080028','2024-12-25 08:00:28',NULL,0,-1,'2024-12-24 08:00:28','2024-12-24 08:00:28','hadesDbSvcUser@172.19.0.1'),(100475,'QATestingSIC9',NULL,1,'HTKlHvFnjjOUozu+VNr4ZQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1hl11e5ghdzg1_242412080538','2024-12-25 08:05:38',NULL,0,-1,'2024-12-24 08:05:38','2024-12-24 08:05:38','hadesDbSvcUser@172.19.0.1'),(100476,'QATestingHCDU',NULL,1,'pMt7iVDHnit9LTlRkHC48AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1hlct0aqmq33q_242412082533','2024-12-25 08:25:33',NULL,0,-1,'2024-12-24 08:25:33','2024-12-24 08:25:33','hadesDbSvcUser@172.19.0.1'),(100477,'QATestingG99G',NULL,1,'/NznvZEiMBP3tHFJr4FyNwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1hm0uwi7tie45_242412090616','2024-12-25 09:06:16',NULL,0,-1,'2024-12-24 09:06:16','2024-12-24 09:06:16','hadesDbSvcUser@172.19.0.1'),(100478,'QATestingETYQ',NULL,1,'6ixnwqJBkwMu4xngL2HRmwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1hm1f6suui2ip_242412090713','2024-12-25 09:07:13',NULL,0,-1,'2024-12-24 09:07:13','2024-12-24 09:07:13','hadesDbSvcUser@172.19.0.1'),(100479,'QATestingGYCH',NULL,1,'QZtH9Gao4XdrsSWI+ubbFgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1hmrlp6ljgtgn_242412095132','2024-12-25 09:51:32',NULL,0,-1,'2024-12-24 09:51:32','2024-12-24 09:51:32','hadesDbSvcUser@172.19.0.1'),(100480,'QATestingRJJ8',NULL,1,'rqatoEJpEMpPfmjhNmzI0AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1ho0kxspsnr2b_242412110740','2024-12-25 11:07:40',NULL,0,-1,'2024-12-24 11:07:40','2024-12-24 11:07:40','hadesDbSvcUser@172.19.0.1'),(100481,'QATesting14JS',NULL,1,'MRYGy9XSm8P+qlijbT2TaQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1hobdtdvnnl18_242412112557','2024-12-25 11:25:57',NULL,0,-1,'2024-12-24 11:25:57','2024-12-24 11:25:57','hadesDbSvcUser@172.19.0.1'),(100482,'QATestingTH9A',NULL,1,'A7jinGPg28wvf4J6OV14FAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1hp1mvsb3u5t7_242412121023','2024-12-25 12:10:23',NULL,0,-1,'2024-12-24 12:10:23','2024-12-24 12:10:23','hadesDbSvcUser@172.19.0.1'),(100483,'QATestingHJ6K',NULL,1,'9aGRtuqO7MwGsAduQ56p5gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1nmbf4td679e2_250201124619','2025-01-03 12:46:19',NULL,0,-1,'2025-01-02 12:46:19','2025-01-02 12:46:19','hadesDbSvcUser@172.19.0.1'),(100484,'Jooyoung test','$2a$10$7d1fh1kUKVtsfVLnBaKHwe17cuJSKC3TY9FhGGV4/moRnqD74Ewtu',1,'YJz4NnNDsYqZ1qY89R2MTOOKNcQrSCiSVvKCtjwepJ8=',-1,1,'1emvgwl0b1q1svce3rgxe1_250601053717','2025-01-06 05:38:32','$2a$10$7d1fh1kUKVtsfVLnBaKHwe',0,-1,'2025-01-06 05:37:17','2025-01-06 05:38:32','hadesDbSvcUser@172.19.0.1'),(100485,'Jooyoung Heo','$2a$10$uuzMjZkALiZ78WPs8.V8ten7Td6rVBw8MJ/.uqlzdHm3/zwMXhFCy',1,'096F7lMAWTgv3Cj7RgJexGoEPFoFLRiFhiGclIQ4rPDdR0g5Y+nkCYMT79pDd2Rf',-1,1,'1emvgwl0b1q1wdi2lr9wyq_250601054313','2025-01-06 05:43:35','$2a$10$uuzMjZkALiZ78WPs8.V8te',0,-1,'2025-01-06 05:40:32','2025-01-06 05:43:35','hadesDbSvcUser@172.19.0.1'),(100486,'QATestingUZRC',NULL,1,'wSnPe0VD9ewjWAVN7JbYNgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1q68q4ud59ze4_250601100752','2025-01-07 10:07:52',NULL,0,-1,'2025-01-06 10:07:52','2025-01-06 10:07:52','hadesDbSvcUser@172.19.0.1'),(100487,'QATestingCXJ0',NULL,1,'ZOxvm+vwj/UCsKNFjCR0AwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1q7emuxy00d86_250601111848','2025-01-07 11:18:48',NULL,0,-1,'2025-01-06 11:18:48','2025-01-06 11:18:48','hadesDbSvcUser@172.19.0.1'),(100488,'QATesting9CEA',NULL,1,'RaNRqGoE1sL8fk5GWhtHegIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1q7hmkhrdy9gp_250601112352','2025-01-07 11:23:52',NULL,0,-1,'2025-01-06 11:23:52','2025-01-06 11:23:52','hadesDbSvcUser@172.19.0.1'),(100489,'QATesting51NX',NULL,1,'42uHDiHPy+3gA6W2S7HHnwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1qrelcbddgtwv_250701073727','2025-01-08 07:37:27',NULL,0,-1,'2025-01-07 07:37:27','2025-01-07 07:37:27','hadesDbSvcUser@172.19.0.1'),(100490,'QATestingPHON',NULL,1,'75EE54hTVPM9d8Kw2FedGAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1qwcao7hnrmm8_250701123815','2025-01-08 12:38:15',NULL,0,-1,'2025-01-07 12:38:15','2025-01-07 12:38:15','hadesDbSvcUser@172.19.0.1'),(100491,'QATestingXL0R',NULL,1,'rWaUE9px/aX1C6JfuC5ZsAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1s3ndilgkmd9m_250901083715','2025-01-10 08:37:15',NULL,0,-1,'2025-01-09 08:37:15','2025-01-09 08:37:15','hadesDbSvcUser@172.19.0.1'),(100492,'QATestingXYY5',NULL,1,'gpBmhmNvEtADjeA36BMQmwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1s40aph0vmasy_250901085907','2025-01-10 08:59:07',NULL,0,-1,'2025-01-09 08:59:07','2025-01-09 08:59:07','hadesDbSvcUser@172.19.0.1'),(100493,'QATestingK9SO',NULL,1,'wRpDXY4Z+9dONxN9BeDqewIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1s4pvmv7dgs7k_250901094225','2025-01-10 09:42:25',NULL,0,-1,'2025-01-09 09:42:25','2025-01-09 09:42:25','hadesDbSvcUser@172.19.0.1'),(100494,'QATestingGQIF',NULL,1,'brYEuXyBAC3j48fiP6Zj9wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1s6k9ivk8kj0s_250901113447','2025-01-10 11:34:47',NULL,0,-1,'2025-01-09 11:34:47','2025-01-09 11:34:47','hadesDbSvcUser@172.19.0.1'),(100495,'QATestingVSEB',NULL,1,'77egYaB7HC7FqnGlkggbPgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1s6l0ril48me6_250901113604','2025-01-10 11:36:04',NULL,0,-1,'2025-01-09 11:36:04','2025-01-09 11:36:04','hadesDbSvcUser@172.19.0.1'),(100496,'QATestingMMVR',NULL,1,'LmzcWe/bOxKzevopTYqJ0QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1s6lkjovxw6ei_250901113700','2025-01-10 11:37:00',NULL,0,-1,'2025-01-09 11:37:00','2025-01-09 11:37:00','hadesDbSvcUser@172.19.0.1'),(100497,'QATestingRXNI',NULL,1,'A3o7NzX/BsZPLyuayURDYAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1s6r518k8eu39_250901114625','2025-01-10 11:46:25',NULL,0,-1,'2025-01-09 11:46:25','2025-01-09 11:46:25','hadesDbSvcUser@172.19.0.1'),(100498,'QATestingU085',NULL,1,'FKoJcCzinampAydE6urOUwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1s7x477ixr4x1_250901125729','2025-01-10 12:57:29',NULL,0,-1,'2025-01-09 12:57:29','2025-01-09 12:57:29','hadesDbSvcUser@172.19.0.1'),(100499,'QATesting9EJD',NULL,1,'zgOn3pp63/qKTPQp4OZ3VAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1s7zqennr0zkf_250901130154','2025-01-10 13:01:54',NULL,0,-1,'2025-01-09 13:01:54','2025-01-09 13:01:54','hadesDbSvcUser@172.19.0.1'),(100500,'QATesting9TL8',NULL,1,'jsOM/2JtVbuE1Oav5W5ycAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1sszz37xqj82v_251001102158','2025-01-11 10:21:58',NULL,0,-1,'2025-01-10 10:21:58','2025-01-10 10:21:58','hadesDbSvcUser@172.19.0.1'),(100501,'QATestingW3DM',NULL,1,'wATSwvqr/re3/cdX0+AfmwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1sv9mpykgllef_251001124011','2025-01-11 12:40:11',NULL,0,-1,'2025-01-10 12:40:11','2025-01-10 12:40:11','hadesDbSvcUser@172.19.0.1'),(100502,'QATestingAVAW',NULL,1,'PymmintbRI2ftbxBvrpisAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1svgt33kvz937_251001125220','2025-01-11 12:52:20',NULL,0,-1,'2025-01-10 12:52:20','2025-01-10 12:52:20','hadesDbSvcUser@172.19.0.1'),(100503,'QATestingMRPK',NULL,1,'uEI+93buDXHU6MlaMFQS8QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1umyervl4rt85_251301052106','2025-01-14 05:21:06',NULL,0,-1,'2025-01-13 05:21:06','2025-01-13 05:21:06','hadesDbSvcUser@172.19.0.1'),(100504,'QATestingIWUU',NULL,1,'+DcR9swyLs2PxjhJVIbbxAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1uo77prnow8nw_251301063656','2025-01-14 06:36:56',NULL,0,-1,'2025-01-13 06:36:56','2025-01-13 06:36:56','hadesDbSvcUser@172.19.0.1'),(100505,'QATestingUTBA',NULL,1,'OGf0+UXKiYpsWWwdcBAyygIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1usy05lwcakko_251301112601','2025-01-14 11:26:01',NULL,0,-1,'2025-01-13 11:26:01','2025-01-13 11:26:01','hadesDbSvcUser@172.19.0.1'),(100506,'QATestingT6P8',NULL,1,'z6Mjjii1YHGhePHtt0N/hQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1w63i76ppc57x_251501132112','2025-01-16 13:21:12',NULL,0,-1,'2025-01-15 13:21:12','2025-01-15 13:21:12','hadesDbSvcUser@172.19.0.1'),(100507,'QATesting5ZVY',NULL,1,'Z7qVKXXT2Td+JArv6eHqQwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1zf58tqs7b13w_252001121339','2025-01-21 12:13:39',NULL,0,-1,'2025-01-20 12:13:39','2025-01-20 12:13:39','hadesDbSvcUser@172.19.0.1'),(100508,'QATesting7XZS',NULL,1,'VEuQyz1NpqdaJTZrEdxY3AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b1zfouedeeqtwo_252001124650','2025-01-21 12:46:50',NULL,0,-1,'2025-01-20 12:46:50','2025-01-20 12:46:50','hadesDbSvcUser@172.19.0.1'),(100509,'QATestingB57G',NULL,1,'wLLSg/KTyron095K/hN4/QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2615rscsgrk49_253001135718','2025-01-31 13:57:18',NULL,0,-1,'2025-01-30 13:57:18','2025-01-30 13:57:18','hadesDbSvcUser@172.19.0.1'),(100510,'QATestingT704',NULL,1,'DCTWkxYQdaVDSVEF2JPRTwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b26h4mdjncb41q_253101061020','2025-02-01 06:10:20',NULL,0,-1,'2025-01-31 06:10:20','2025-01-31 06:10:20','hadesDbSvcUser@172.19.0.1'),(100511,'QATestingRWAM',NULL,1,'nl3dSCbvEq4oX+sBQK1TYgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b26hzqqzcfyfhl_253101070301','2025-02-01 07:03:01',NULL,0,-1,'2025-01-31 07:03:01','2025-01-31 07:03:01','hadesDbSvcUser@172.19.0.1'),(100512,'QATesting7SAI',NULL,1,'Pk9J3p9SxITRNx43g6uatgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b26lggywemvl53_253101103408','2025-02-01 10:34:08',NULL,0,-1,'2025-01-31 10:34:08','2025-01-31 10:34:08','hadesDbSvcUser@172.19.0.1'),(100513,'QATestingV0VL',NULL,1,'5mHphVKe+9D++D82bcHhXQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b26mblfkbw6xyi_253101112649','2025-02-01 11:26:49',NULL,0,-1,'2025-01-31 11:26:49','2025-01-31 11:26:49','hadesDbSvcUser@172.19.0.1'),(100514,'QATestingZT8V',NULL,1,'AmRpy6M9H9wHDgx9FUcrbgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b26mcwurunlbqx_253101112903','2025-02-01 11:29:03',NULL,0,-1,'2025-01-31 11:29:03','2025-01-31 11:29:03','hadesDbSvcUser@172.19.0.1'),(100515,'QATesting0H9B',NULL,1,'O/eK0CDCi6q0851jaWlSLgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b26o7mnow0aaof_253101132159','2025-02-01 13:21:59',NULL,0,-1,'2025-01-31 13:21:59','2025-01-31 13:21:59','hadesDbSvcUser@172.19.0.1'),(100516,'QATestingFY5M',NULL,1,'HoRzSOqcDjI7dB7hkUgAowIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b28eoz07m61l4u_250302044922','2025-02-04 04:49:22',NULL,0,-1,'2025-02-03 04:49:22','2025-02-03 04:49:22','hadesDbSvcUser@172.19.0.1'),(100517,'QATestingWES8',NULL,1,'Bo1DfUakY3S5UI6bCC+6dwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b28huh875pjh1a_250302080129','2025-02-04 08:01:29',NULL,0,-1,'2025-02-03 08:01:29','2025-02-03 08:01:29','hadesDbSvcUser@172.19.0.1'),(100518,'QATestingFBZS',NULL,1,'oe5f+qyw6GRr2kw0iLsEIQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b28i2jrhczfzj1_250302081509','2025-02-04 08:15:09',NULL,0,-1,'2025-02-03 08:15:09','2025-02-03 08:15:09','hadesDbSvcUser@172.19.0.1'),(100519,'QATesting0XEN',NULL,1,'qW2tCU9FebRvayPon1ro+gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b28nv8kffrgqj7_250302140824','2025-02-04 14:08:24',NULL,0,-1,'2025-02-03 14:08:24','2025-02-03 14:08:24','hadesDbSvcUser@172.19.0.1'),(100520,'QATesting54N3',NULL,1,'ALaDh1WIazhYlLVfed3tUQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b28nzk2q6wt81u_250302141542','2025-02-04 14:15:42',NULL,0,-1,'2025-02-03 14:15:42','2025-02-03 14:15:42','hadesDbSvcUser@172.19.0.1'),(100521,'QATestingXHMZ',NULL,1,'VljGGGr0Z3nfwcMJkF7YGwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b28o0cfdeyjcxx_250302141702','2025-02-04 14:17:02',NULL,0,-1,'2025-02-03 14:17:02','2025-02-03 14:17:02','hadesDbSvcUser@172.19.0.1'),(100522,'QATestingHSLY',NULL,1,'5PFzFVazThTFqdWDAGe2SwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b28r1po9qxl5sv_250302172210','2025-02-04 17:22:10',NULL,0,-1,'2025-02-03 17:22:10','2025-02-03 17:22:10','hadesDbSvcUser@172.19.0.1'),(100523,'QATestingY5XY',NULL,1,'2N21eTmkftTxQRk50n+kAAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b28s69jvi43710_250302183048','2025-02-04 18:30:48',NULL,0,-1,'2025-02-03 18:30:48','2025-02-03 18:30:48','hadesDbSvcUser@172.19.0.1'),(100524,'QATestingC61J',NULL,1,'A/xy6fz3KBFME2ywkBn79gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2932zu6r2v5d6_250402053534','2025-02-05 05:35:34',NULL,0,-1,'2025-02-04 05:35:34','2025-02-04 05:35:34','hadesDbSvcUser@172.19.0.1'),(100525,'QATestingJNSF',NULL,1,'652UevPNjfoa00uXpdSOtgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b29yyozw2vitqy_250502135814','2025-02-06 13:58:14',NULL,0,-1,'2025-02-05 13:58:14','2025-02-05 13:58:14','hadesDbSvcUser@172.19.0.1'),(100526,'Vishal Khandate','$2a$10$1I6aetQUnXtOHaAjmYgLTOK/Y5CtUUQwf4wKLE5CWO1o3S5hYxjCi',1,'t2ouuEFbUbbm9QlmURaj5PNKanrdrAPOiCbP0QVxDdtuHax/6udH1fEVWWptrbE8',-1,1,'1emvgwl0b2ae1dgz4z0nn9_250602051649','2025-02-06 05:19:14','$2a$10$1I6aetQUnXtOHaAjmYgLTO',0,-1,'2025-02-06 05:16:49','2025-02-06 05:19:14','hadesDbSvcUser@172.19.0.1'),(100527,'QATestingKC0N',NULL,1,'jLtnUhkvTN7Co12I4xW7CAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2al5tqkao3mzn_250602123054','2025-02-07 12:30:54',NULL,0,-1,'2025-02-06 12:30:54','2025-02-06 12:30:54','hadesDbSvcUser@172.19.0.1'),(100528,'QATesting4L4Y',NULL,1,'PwfmmvS0tA3oFzMgtV5dOQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2alwg18oatyva_250602131557','2025-02-07 13:15:57',NULL,0,-1,'2025-02-06 13:15:57','2025-02-06 13:15:57','hadesDbSvcUser@172.19.0.1'),(100529,'QATestingIVS4',NULL,1,'Cm6ErbehrXDSnngBu+WymQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2d8o5lkijg71z_251002133050','2025-02-11 13:30:50',NULL,0,-1,'2025-02-10 13:30:50','2025-02-10 13:30:50','hadesDbSvcUser@172.19.0.1'),(100530,'QATestingG978',NULL,1,'XoxZh2GT4NiwShvUwKuzDAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2ejrjrevi8wav_251202132034','2025-02-13 13:20:34',NULL,0,-1,'2025-02-12 13:20:34','2025-02-12 13:20:34','hadesDbSvcUser@172.19.0.1'),(100531,'QATesting4U9P',NULL,1,'+XiWRcZ4CEB4usoPYgV8cgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2eldac4ajpwzq_251202145818','2025-02-13 14:58:18',NULL,0,-1,'2025-02-12 14:58:18','2025-02-12 14:58:18','hadesDbSvcUser@172.19.0.1'),(100532,'QATestingN60B',NULL,1,'1j7s9+d+1vMt7eQUYbpUdgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2f6v9wkzynw9k_251302124825','2025-02-14 12:48:25',NULL,0,-1,'2025-02-13 12:48:25','2025-02-13 12:48:25','hadesDbSvcUser@172.19.0.1'),(100533,'QATestingHVMA',NULL,1,'BQnC/bb5J+L/vdg9cfKxRQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2f7sbe1lh30ey_251302134420','2025-02-14 13:44:20',NULL,0,-1,'2025-02-13 13:44:20','2025-02-13 13:44:20','hadesDbSvcUser@172.19.0.1'),(100534,'QATestingGU1V',NULL,1,'h4LMBOJOupPgjEL9pKZF6wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2f8frdwnhqavj_251302142401','2025-02-14 14:24:01',NULL,0,-1,'2025-02-13 14:24:01','2025-02-13 14:24:01','hadesDbSvcUser@172.19.0.1'),(100535,'QATestingLBKV',NULL,1,'/0pyzDkdHbM6mVtRfwwtoAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2fpk0ciwgjnfw_251402074707','2025-02-15 07:47:07',NULL,0,-1,'2025-02-14 07:47:07','2025-02-14 07:47:07','hadesDbSvcUser@172.19.0.1'),(100536,'QATestingZSME',NULL,1,'aKHtIuWvXN7PZl015RLvKAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2fs01lei4b7rp_251402101608','2025-02-15 10:16:08',NULL,0,-1,'2025-02-14 10:16:08','2025-02-14 10:16:08','hadesDbSvcUser@172.19.0.1'),(100537,'Niraj Vadher',NULL,1,'AH9nmE2PljkODKBEmb4cxzAP3wPtztvG28iTEUNXD9UFQ5puelDI29EHArmO7plI',-1,1,'1emvgwl0b2how70mipscew_251702081412','2025-02-18 08:14:12',NULL,0,-1,'2025-02-17 08:14:12','2025-02-17 08:14:12','hadesDbSvcUser@172.19.0.1'),(100538,'QATestingS1TI',NULL,1,'BGyxpIC/V4BRU1RdOSXhbwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2htlx5tpg6x58_251702130130','2025-02-18 13:01:30',NULL,0,-1,'2025-02-17 13:01:30','2025-02-17 13:01:30','hadesDbSvcUser@172.19.0.1'),(100539,'Ajinkya Deshpande','$2a$10$AU2YyKt.wDGT8C5Naqn2X.ES5JrhIjiPTaOAyWNQ4GbvkZTmmmYni',1,'ClJQUrwIDAcY9mAmB+aogEgdn2Xc0hK++aVXLBlo9la+FC+IGUE0F7ce5H/J/Ayw',-1,1,'1emvgwl0b2jm7a7ecw14b0_252002063733','2025-02-20 06:40:05','$2a$10$AU2YyKt.wDGT8C5Naqn2X.',0,-1,'2025-02-20 06:37:33','2025-02-20 06:40:05','hadesDbSvcUser@172.19.0.1'),(100540,'Priyanshu Pandey','$2a$10$a369UH7FM3E1n2oxKNqhfepsqquRVQ1IHB0FTgGQpyK44r83oPODu',1,'aVvBZN/oKM5GwNgFp8VpEVpqhQTE6wyvt07Kl+s9Rjl0uAZJ/LmU/l89OaLLJMo4',-1,1,'1emvgwl0b2mbbxvas7o11o_252402091614','2025-02-24 09:16:52','$2a$10$a369UH7FM3E1n2oxKNqhfe',0,-1,'2025-02-24 09:16:14','2025-02-24 09:16:52','hadesDbSvcUser@172.19.0.1'),(100541,'QATestingFT2V',NULL,1,'tlxwEGGTpPrpElT8AcV3wwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2mdfise0jpl71_252402112410','2025-02-25 11:24:10',NULL,0,-1,'2025-02-24 11:24:10','2025-02-24 11:24:10','hadesDbSvcUser@172.19.0.1'),(100542,'QATestingZHFH',NULL,1,'3VPg2Pk52XGPOAfO6Y5qogIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2n1z213uzlo18_252502121941','2025-02-26 12:19:41',NULL,0,-1,'2025-02-25 12:19:41','2025-02-25 12:19:41','hadesDbSvcUser@172.19.0.1'),(100543,'QATestingB7GQ',NULL,1,'eMZpJNugJCLEck7YcHd9PgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2not10kfw82hu_252602113101','2025-02-27 11:31:01',NULL,0,-1,'2025-02-26 11:31:01','2025-02-26 11:31:01','hadesDbSvcUser@172.19.0.1'),(100544,'QATestingCNBK',NULL,1,'ln8aQIoJkhL6lb3walHaagIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2o8s8opsi0t4d_252702074824','2025-02-28 07:48:24',NULL,0,-1,'2025-02-27 07:48:24','2025-02-27 07:48:24','hadesDbSvcUser@172.19.0.1'),(100545,'QATestingBA29',NULL,1,'lpyiptId7c/T/buyfQ1ukgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2ro9p5ia9cy0m_250403131305','2025-03-05 13:13:05',NULL,0,-1,'2025-03-04 13:13:05','2025-03-04 13:13:05','hadesDbSvcUser@172.19.0.1'),(100546,'QATestingPBDO',NULL,1,'Fc+uWjVQvTvBJyd4mmwvCgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2rodb0hlzuuuy_250403131911','2025-03-05 13:19:11',NULL,0,-1,'2025-03-04 13:19:11','2025-03-04 13:19:11','hadesDbSvcUser@172.19.0.1'),(100547,'QATestingQOQU',NULL,1,'hoAd8igEGcTZ964Pug8HpwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2sc3ko1nq4h3s_250503132510','2025-03-06 13:25:10',NULL,0,-1,'2025-03-05 13:25:10','2025-03-05 13:25:10','hadesDbSvcUser@172.19.0.1'),(100548,'QATesting1QHZ',NULL,1,'/MjWOR417FSu729Gp9lJRQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2sc8eefoflmvf_250503133320','2025-03-06 13:33:20',NULL,0,-1,'2025-03-05 13:33:20','2025-03-05 13:33:20','hadesDbSvcUser@172.19.0.1'),(100549,'QATestingBSW2',NULL,1,'09EcVE3z7MXUIOIj9V5qPgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2scbwvbixxqax_250503133917','2025-03-06 13:39:17',NULL,0,-1,'2025-03-05 13:39:17','2025-03-05 13:39:17','hadesDbSvcUser@172.19.0.1'),(100550,'QATestingELKN',NULL,1,'pXu5FcAoZQFYUDLp0P83cAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2ssunye4v1pp0_250603062600','2025-03-07 06:26:00',NULL,0,-1,'2025-03-06 06:26:00','2025-03-06 06:26:00','hadesDbSvcUser@172.19.0.1'),(100551,'QATesting6MXL',NULL,1,'4Q2GI2BoF8j+8Jj4AvEGtQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2swb1xxzad4if_250603095633','2025-03-07 09:56:33',NULL,0,-1,'2025-03-06 09:56:33','2025-03-06 09:56:33','hadesDbSvcUser@172.19.0.1'),(100552,'QATestingC9AR',NULL,1,'MOP6moDVwDD5OysYqMugkwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2sxfzqj2jttc2_250603110551','2025-03-07 11:05:51',NULL,0,-1,'2025-03-06 11:05:51','2025-03-06 11:05:51','hadesDbSvcUser@172.19.0.1'),(100553,'QATesting5Z0O',NULL,1,'vTsZ9qcsaOUjmMOGaWx4BgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2szk6ykq9g4fd_250603131450','2025-03-07 13:14:50',NULL,0,-1,'2025-03-06 13:14:50','2025-03-06 13:14:50','hadesDbSvcUser@172.19.0.1'),(100554,'QATestingK22W',NULL,1,'a8H29EXIN7mIzK5GqLox2gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2szl2q5r214ml_250603131619','2025-03-07 13:16:19',NULL,0,-1,'2025-03-06 13:16:19','2025-03-06 13:16:19','hadesDbSvcUser@172.19.0.1'),(100555,'QATestingY7JI',NULL,1,'llRHIiA3Jx0jIHYpHMEB+AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2t0flczr5x5ss_250603140759','2025-03-07 14:07:59',NULL,0,-1,'2025-03-06 14:07:59','2025-03-06 14:07:59','hadesDbSvcUser@172.19.0.1'),(100556,'QATesting6NRZ',NULL,1,'BKxlcSMA2dmYvsVklmHiGQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2vg80ir2hwg9o_251003071731','2025-03-11 07:17:31',NULL,0,-1,'2025-03-10 07:17:31','2025-03-10 07:17:31','hadesDbSvcUser@172.19.0.1'),(100557,'QATestingS2VB',NULL,1,'cBV3hkIOFrE1kSLFhVhHUAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b2wxt30xex4hgq_251203134247','2025-03-13 13:42:47',NULL,0,-1,'2025-03-12 13:42:47','2025-03-12 13:42:47','hadesDbSvcUser@172.19.0.1'),(100558,'QATestingA0HW',NULL,1,'KmgmCbH9EyMlvy0MzBVe8QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b30tfc6ck9bm4p_251803113033','2025-03-19 11:30:33',NULL,0,-1,'2025-03-18 11:30:33','2025-03-18 11:30:33','hadesDbSvcUser@172.19.0.1'),(100559,'QATesting801U',NULL,1,'pVOz5Lt+XahM7m304yHZnQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b30u6dorhu0jfq_251803121620','2025-03-19 12:16:20',NULL,0,-1,'2025-03-18 12:16:20','2025-03-18 12:16:20','hadesDbSvcUser@172.19.0.1'),(100560,'QATesting8ZUA',NULL,1,'OUVZdxLtVjPexyS1mJosawIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b30vavfyuzan98_251803132452','2025-03-19 13:24:52',NULL,0,-1,'2025-03-18 13:24:52','2025-03-18 13:24:52','hadesDbSvcUser@172.19.0.1'),(100561,'QATestingE7DW',NULL,1,'/OqoNbLfwBkb3EA0r7kDSwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b31k3thucon8uq_251903143620','2025-03-20 14:36:20',NULL,0,-1,'2025-03-19 14:36:20','2025-03-19 14:36:20','hadesDbSvcUser@172.19.0.1'),(100562,'QATestingIWIJ',NULL,1,'LcEqg6iB6JY6qV8QL3qLYgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b326ercisil749_252003131526','2025-03-21 13:15:26',NULL,0,-1,'2025-03-20 13:15:26','2025-03-20 13:15:26','hadesDbSvcUser@172.19.0.1'),(100563,'QATestingKNBX',NULL,1,'5r9YMVm9wAOqPsCgGhLy3gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b326uoqlz1e7en_252003134224','2025-03-21 13:42:24',NULL,0,-1,'2025-03-20 13:42:24','2025-03-20 13:42:24','hadesDbSvcUser@172.19.0.1'),(100564,'QATesting1BT1',NULL,1,'s7oSEjTEY5XMaiDr6NgMkwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b35gh54xqkebcd_252503130955','2025-03-26 13:09:55',NULL,0,-1,'2025-03-25 13:09:55','2025-03-25 13:09:55','hadesDbSvcUser@172.19.0.1'),(100565,'QATestingQ61J',NULL,1,'1uQmMRbcc6S+Q0O9fyPMawIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b36421dkuojs80_252603130649','2025-03-27 13:06:49',NULL,0,-1,'2025-03-26 13:06:49','2025-03-26 13:06:49','hadesDbSvcUser@172.19.0.1'),(100566,'QATesting8YMV',NULL,1,'teB8aepHyzVuf2ll86PfKgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3644h46w0ir6l_252603131056','2025-03-27 13:10:56',NULL,0,-1,'2025-03-26 13:10:56','2025-03-26 13:10:56','hadesDbSvcUser@172.19.0.1'),(100567,'QATestingWHVA',NULL,1,'gRfP4KLesBMmlqtDj5uG0AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b364fbtoczsafu_252603132919','2025-03-27 13:29:19',NULL,0,-1,'2025-03-26 13:29:19','2025-03-26 13:29:19','hadesDbSvcUser@172.19.0.1'),(100568,'QATestingTMKS',NULL,1,'EaRiYtYOQJ2QtPa2H5w2JwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b364h7fgu6afk4_252603133229','2025-03-27 13:32:29',NULL,0,-1,'2025-03-26 13:32:29','2025-03-26 13:32:29','hadesDbSvcUser@172.19.0.1'),(100569,'QATestingLVQ5',NULL,1,'R+yHsG0MFsoZ5aqLCEEUKgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b36miwb2z8jo1b_252703075212','2025-03-28 07:52:12',NULL,0,-1,'2025-03-27 07:52:12','2025-03-27 07:52:12','hadesDbSvcUser@172.19.0.1'),(100570,'QATesting92PX',NULL,1,'wKutxs1QocFqLu+dIH8JEgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b36r450vzw5rdm_252703123154','2025-03-28 12:31:54',NULL,0,-1,'2025-03-27 12:31:54','2025-03-27 12:31:54','hadesDbSvcUser@172.19.0.1'),(100571,'QATestingZASE',NULL,1,'dK88BscIolh2xwcvl1w7cQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b36rthg8jf128r_252703131448','2025-03-28 13:14:48',NULL,0,-1,'2025-03-27 13:14:48','2025-03-27 13:14:48','hadesDbSvcUser@172.19.0.1'),(100572,'QATestingR3XX',NULL,1,'Q1OvCIZ98a3z/HVudko+jAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3a1k70mlmetzn_250104124931','2025-04-02 12:49:31',NULL,0,-1,'2025-04-01 12:49:31','2025-04-01 12:49:31','hadesDbSvcUser@172.19.0.1'),(100573,'QATestingZANZ',NULL,1,'ozBpd0CIs7h28bvsrT8fxgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3a23so9mu5o7z_250104132242','2025-04-02 13:22:42',NULL,0,-1,'2025-04-01 13:22:42','2025-04-01 13:22:42','hadesDbSvcUser@172.19.0.1'),(100574,'QATestingGDK4',NULL,1,'CjNl3MxW98TbXeKzDGmt3AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3aiyo28lonmpd_250204062956','2025-04-03 06:29:56',NULL,0,-1,'2025-04-02 06:29:56','2025-04-02 06:29:56','hadesDbSvcUser@172.19.0.1'),(100575,'QATesting3NLY',NULL,1,'fO9r6r46xTUkFX0fUzT9uAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3bbjk29zrcja3_250304113130','2025-04-04 11:31:30',NULL,0,-1,'2025-04-03 11:31:30','2025-04-03 11:31:30','hadesDbSvcUser@172.19.0.1'),(100576,'QATestingPYVK',NULL,1,'l2xhLcCfKFE5FGk1UaXhKgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3bbsrun1uaazc_250304114706','2025-04-04 11:47:06',NULL,0,-1,'2025-04-03 11:47:06','2025-04-03 11:47:06','hadesDbSvcUser@172.19.0.1'),(100577,'QATestingHKKM',NULL,1,'lTKvTPwba4bZtnbdjFFyUwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3bclmw70aiwi7_250304123557','2025-04-04 12:35:57',NULL,0,-1,'2025-04-03 12:35:57','2025-04-03 12:35:57','hadesDbSvcUser@172.19.0.1'),(100578,'QATestingFA92',NULL,1,'f76aKSfv76SzhTF/Hy4FMwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3bcmfbrfkxsas_250304123717','2025-04-04 12:37:17',NULL,0,-1,'2025-04-03 12:37:17','2025-04-03 12:37:17','hadesDbSvcUser@172.19.0.1'),(100579,'QATesting1O6U',NULL,1,'SBaA0YJhaPfMZkV9XhKDIAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3bvofwagyjmxr_250404075829','2025-04-05 07:58:29',NULL,0,-1,'2025-04-04 07:58:29','2025-04-04 07:58:29','hadesDbSvcUser@172.19.0.1'),(100580,'QATestingFFG5',NULL,1,'KRJBaAGuolp1+7rElbKn2QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3bzb1bdmgcq4h_250404113932','2025-04-05 11:39:32',NULL,0,-1,'2025-04-04 11:39:32','2025-04-04 11:39:32','hadesDbSvcUser@172.19.0.1'),(100581,'QATestingJ2QB',NULL,1,'hQGvXi5OXT2f0oRdyIsyqgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3dsnd3s3ks0i6_250704060115','2025-04-08 06:01:15',NULL,0,-1,'2025-04-07 06:01:15','2025-04-07 06:01:15','hadesDbSvcUser@172.19.0.1'),(100582,'QATestingK1H8',NULL,1,'cHVz5wqFNBdQ5ievtZKspAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3dtgi5s384kdr_250704065034','2025-04-08 06:50:34',NULL,0,-1,'2025-04-07 06:50:34','2025-04-07 06:50:34','hadesDbSvcUser@172.19.0.1'),(100583,'QATestingNM98',NULL,1,'6TokWpoNaOFR/Pl+mVwQ3gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3dvhodzplng95_250704085425','2025-04-08 08:54:25',NULL,0,-1,'2025-04-07 08:54:25','2025-04-07 08:54:25','hadesDbSvcUser@172.19.0.1'),(100584,'QATestingY5CX',NULL,1,'x6WrxuyCGJ+A4M9a3WoY6gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3em6erjxe1hev_250804120037','2025-04-09 12:00:37',NULL,0,-1,'2025-04-08 12:00:37','2025-04-08 12:00:37','hadesDbSvcUser@172.19.0.1'),(100585,'QATestingQXJV',NULL,1,'Q8DaQK5TMhVHiaXv+srY0QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3f3qi7eiq0obh_250904055033','2025-04-10 05:50:33',NULL,0,-1,'2025-04-09 05:50:33','2025-04-09 05:50:33','hadesDbSvcUser@172.19.0.1'),(100586,'QATestingUQ19',NULL,1,'uTI698mFYMXwFhUP/Mag0QIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3f45k69deg4ps_250904061602','2025-04-10 06:16:02',NULL,0,-1,'2025-04-09 06:16:02','2025-04-09 06:16:02','hadesDbSvcUser@172.19.0.1'),(100587,'QATesting0NLC',NULL,1,'bOUd3xZ6DbAk7PkBHilr5gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3f4p4t31zok28_250904064910','2025-04-10 06:49:10',NULL,0,-1,'2025-04-09 06:49:10','2025-04-09 06:49:10','hadesDbSvcUser@172.19.0.1'),(100588,'QATesting6T2D',NULL,1,'uNpLFR3zZt9fh/mRUKrgEgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3f5nhd22s6wft_250904074718','2025-04-10 07:47:18',NULL,0,-1,'2025-04-09 07:47:18','2025-04-09 07:47:18','hadesDbSvcUser@172.19.0.1'),(100589,'QATestingT3DI',NULL,1,'BUi9MVUhVXtbQ3Bdd7cFwwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3f6kfc8z33cfx_250904084304','2025-04-10 08:43:04',NULL,0,-1,'2025-04-09 08:43:04','2025-04-09 08:43:04','hadesDbSvcUser@172.19.0.1'),(100590,'QATestingSHQN',NULL,1,'A7mVd4pfjTPQ8XnoPLuaPAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3f78feo9zz6kf_250904092342','2025-04-10 09:23:42',NULL,0,-1,'2025-04-09 09:23:42','2025-04-09 09:23:42','hadesDbSvcUser@172.19.0.1'),(100591,'QATestingN9JZ',NULL,1,'2ksdnCOZFgmUbMQ9poF7SQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3f8afzydtpeqy_250904102803','2025-04-10 10:28:03',NULL,0,-1,'2025-04-09 10:28:03','2025-04-09 10:28:03','hadesDbSvcUser@172.19.0.1'),(100592,'QATestingY7KH',NULL,1,'mF6MP+h0Qkmmonxec3UohwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3f98f8nhyqffq_250904112534','2025-04-10 11:25:34',NULL,0,-1,'2025-04-09 11:25:34','2025-04-09 11:25:34','hadesDbSvcUser@172.19.0.1'),(100593,'QATestingN0NS',NULL,1,'eXS1GuwsVrz391BImVhd8gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3fab1acpbmh6b_250904123055','2025-04-10 12:30:55',NULL,0,-1,'2025-04-09 12:30:55','2025-04-09 12:30:55','hadesDbSvcUser@172.19.0.1'),(100594,'QATesting5Z8C',NULL,1,'pZoLJPUTj4F/S6Vzx0SvCwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3fx5wjo5onndn_251004114345','2025-04-11 11:43:45',NULL,0,-1,'2025-04-10 11:43:45','2025-04-10 11:43:45','hadesDbSvcUser@172.19.0.1'),(100595,'QATestingOXXU',NULL,1,'k/Ofz6+40Rjvk58STG59ZAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3iklgz7jbjwa5_251404123902','2025-04-15 12:39:02',NULL,0,-1,'2025-04-14 12:39:02','2025-04-14 12:39:02','hadesDbSvcUser@172.19.0.1'),(100596,'QATestingFJJP',NULL,1,'OOb+QCu8N8d/0U810SAZMAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3ikm9ijhdckuu_251404124022','2025-04-15 12:40:22',NULL,0,-1,'2025-04-14 12:40:22','2025-04-14 12:40:22','hadesDbSvcUser@172.19.0.1'),(100597,'QATestingQ8D5',NULL,1,'vEbn6NQ3X1IDqSVWleUtvAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3ilkj7f29uoyg_251404133822','2025-04-15 13:38:22',NULL,0,-1,'2025-04-14 13:38:22','2025-04-14 13:38:22','hadesDbSvcUser@172.19.0.1'),(100598,'QATesting5LB6',NULL,1,'YWCYZxhrvHuTGv3KGzcJgAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3ilv683trrg4f_251404135623','2025-04-15 13:56:23',NULL,0,-1,'2025-04-14 13:56:23','2025-04-14 13:56:23','hadesDbSvcUser@172.19.0.1'),(100599,'QATesting7JWC',NULL,1,'BDzppKFjvmjJOi0HBh88BQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3j5eiewag3c3z_251504094654','2025-04-16 09:46:54',NULL,0,-1,'2025-04-15 09:46:54','2025-04-15 09:46:54','hadesDbSvcUser@172.19.0.1'),(100600,'QATestingX5I6',NULL,1,'qyv/eubw/KPZOhe3ukXJBAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3j5s3urfm65p2_251504100955','2025-04-16 10:09:55',NULL,0,-1,'2025-04-15 10:09:55','2025-04-15 10:09:55','hadesDbSvcUser@172.19.0.1'),(100601,'QATestingXPX6',NULL,1,'gpml/N3a18ZPMx8Ij8laCAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3j64tpc1b4xta_251504103126','2025-04-16 10:31:26',NULL,0,-1,'2025-04-15 10:31:26','2025-04-15 10:31:26','hadesDbSvcUser@172.19.0.1'),(100602,'QATesting8USN',NULL,1,'c8bHxKTUkwpELvWBkuO/ngIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3j66frvqqxdbm_251504103410','2025-04-16 10:34:10',NULL,0,-1,'2025-04-15 10:34:10','2025-04-15 10:34:10','hadesDbSvcUser@172.19.0.1'),(100603,'QATesting3D36',NULL,1,'eMCCPDWE6W0R58g8uNtVKAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3j6l0jb618xbf_251504105851','2025-04-16 10:58:51',NULL,0,-1,'2025-04-15 10:58:51','2025-04-15 10:58:51','hadesDbSvcUser@172.19.0.1'),(100604,'QATesting4NIH',NULL,1,'zybQv3izTAe6lMRzndAlWgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3j6ofgp7o56j6_251504110437','2025-04-16 11:04:37',NULL,0,-1,'2025-04-15 11:04:37','2025-04-15 11:04:37','hadesDbSvcUser@172.19.0.1'),(100605,'QATestingVKKT',NULL,1,'rDp3FlexgmJwIsOGKLzVXQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3j6rjsskqio67_251504110954','2025-04-16 11:09:54',NULL,0,-1,'2025-04-15 11:09:54','2025-04-15 11:09:54','hadesDbSvcUser@172.19.0.1'),(100606,'QATesting3Y79',NULL,1,'21StMbd0JUObZoYcp0aYHgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3j82myafu9i4s_251504122937','2025-04-16 12:29:37',NULL,0,-1,'2025-04-15 12:29:37','2025-04-15 12:29:37','hadesDbSvcUser@172.19.0.1'),(100607,'QATesting6XGA',NULL,1,'t5ZmbqO5xxGhRSDboJloWgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3j8mi9cgs2wvc_251504130315','2025-04-16 13:03:15',NULL,0,-1,'2025-04-15 13:03:15','2025-04-15 13:03:15','hadesDbSvcUser@172.19.0.1'),(100608,'QATesting08FX',NULL,1,'0JTz/Rr09YyRC/0EDnAugAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3j9e99smypmeh_251504135013','2025-04-16 13:50:13',NULL,0,-1,'2025-04-15 13:50:13','2025-04-15 13:50:13','hadesDbSvcUser@172.19.0.1'),(100609,'QATesting0AZS',NULL,1,'CEogiJf2PZ0tq76aoGcyggIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3jtj8uci3w9sv_251604101723','2025-04-17 10:17:23',NULL,0,-1,'2025-04-16 10:17:23','2025-04-16 10:17:23','hadesDbSvcUser@172.19.0.1'),(100610,'QATesting7QTO',NULL,1,'Mmcp3l7WpJjIBrDgn1pt0AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3juvwlos02c7q_251604113945','2025-04-17 11:39:45',NULL,0,-1,'2025-04-16 11:39:45','2025-04-16 11:39:45','hadesDbSvcUser@172.19.0.1'),(100611,'QATestingR8S2',NULL,1,'VePCy4MubbPgwRtUWXNuUgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3jv8anofnae4h_251604120043','2025-04-17 12:00:43',NULL,0,-1,'2025-04-16 12:00:43','2025-04-16 12:00:43','hadesDbSvcUser@172.19.0.1'),(100612,'QATestingAXGV',NULL,1,'Ec3daXFhgaoGvupJ5aFBLAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3jvm11yczsdrr_251604122358','2025-04-17 12:23:58',NULL,0,-1,'2025-04-16 12:23:58','2025-04-16 12:23:58','hadesDbSvcUser@172.19.0.1'),(100613,'QATesting6VZH',NULL,1,'mM80XvOfIkQxamtSaCaaGgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3jxyiqok6v3py_251604144659','2025-04-17 14:46:59',NULL,0,-1,'2025-04-16 14:46:59','2025-04-16 14:46:59','hadesDbSvcUser@172.19.0.1'),(100614,'QATestingFB4Q',NULL,1,'GDXVZ8h78UJbFU3Ds54XUQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3kcj8245p5u9j_251704053507','2025-04-18 05:35:07',NULL,0,-1,'2025-04-17 05:35:07','2025-04-17 05:35:07','hadesDbSvcUser@172.19.0.1'),(100615,'QATesting6O3D',NULL,1,'KwYbX6BZPY8HJxj6bQnQqQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3kfgtbubs84hv_251704083351','2025-04-18 08:33:51',NULL,0,-1,'2025-04-17 08:33:51','2025-04-17 08:33:51','hadesDbSvcUser@172.19.0.1'),(100616,'QATestingLO1A',NULL,1,'RMbebyvIC7h3SFZWGv9d1gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3kg0zhpa8btr2_251704090800','2025-04-18 09:08:00',NULL,0,-1,'2025-04-17 09:08:00','2025-04-17 09:08:00','hadesDbSvcUser@172.19.0.1'),(100617,'QATestingIP0S',NULL,1,'2Kl9vjVyloyWAz5XSlYPvQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3ki1cg2srvsd5_251704111029','2025-04-18 11:10:29',NULL,0,-1,'2025-04-17 11:10:29','2025-04-17 11:10:29','hadesDbSvcUser@172.19.0.1'),(100618,'QATestingK9NK',NULL,1,'CSKalOIEbupL+Sz0+SjZRAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3kir75hcqi80h_251704115414','2025-04-18 11:54:14',NULL,0,-1,'2025-04-17 11:54:14','2025-04-17 11:54:14','hadesDbSvcUser@172.19.0.1'),(100619,'QATestingL2WJ',NULL,1,'1+rJTrLBhvDalv7S6L+NcwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3kksabs7u7mmc_251704135757','2025-04-18 13:57:57',NULL,0,-1,'2025-04-17 13:57:57','2025-04-17 13:57:57','hadesDbSvcUser@172.19.0.1'),(100620,'QATesting745O',NULL,1,'exvB5XZXLxousTAalNdZZwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3kkzc4nwx4wy4_251704140953','2025-04-18 14:09:53',NULL,0,-1,'2025-04-17 14:09:53','2025-04-17 14:09:53','hadesDbSvcUser@172.19.0.1'),(100621,'QATestingSYHW',NULL,1,'uumoVcKn0T8LbF6sNrcFiAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3l3azfeqink85_251804084627','2025-04-19 08:46:27',NULL,0,-1,'2025-04-18 08:46:27','2025-04-18 08:46:27','hadesDbSvcUser@172.19.0.1'),(100622,'QATesting7O27',NULL,1,'OTHq4SYVXLLlw837nHVxWAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3l5xp6e1lgfq2_251804112646','2025-04-19 11:26:46',NULL,0,-1,'2025-04-18 11:26:46','2025-04-18 11:26:46','hadesDbSvcUser@172.19.0.1'),(100623,'QATesting7O0P',NULL,1,'smAfwnguCLkUUE2FIRygWwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3l7ogqrker98a_251804131301','2025-04-19 13:13:01',NULL,0,-1,'2025-04-18 13:13:01','2025-04-18 13:13:01','hadesDbSvcUser@172.19.0.1'),(100624,'QATestingVM9B',NULL,1,'IukdvldMa/4OOVhRovFj7wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3lshzdsj5saqo_251904102142','2025-04-20 10:21:42',NULL,0,-1,'2025-04-19 10:21:42','2025-04-19 10:21:42','hadesDbSvcUser@172.19.0.1'),(100625,'QATestingIIDQ',NULL,1,'3TW3vY1FOBiotngG4AQKbAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3ltxijie9uvqs_251904114855','2025-04-20 11:48:55',NULL,0,-1,'2025-04-19 11:48:55','2025-04-19 11:48:55','hadesDbSvcUser@172.19.0.1'),(100626,'QATestingR0KO',NULL,1,'N/kzlezNzlbnVI8HV6xiPAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3lxv059ruikf2_251904154825','2025-04-20 15:48:25',NULL,0,-1,'2025-04-19 15:48:25','2025-04-19 15:48:25','hadesDbSvcUser@172.19.0.1'),(100627,'QATestingF6PU',NULL,1,'LWUD8XEMKJ4eaUdjmN0oXwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3mdfgmy9lpl74_252004073705','2025-04-21 07:37:05',NULL,0,-1,'2025-04-20 07:37:05','2025-04-20 07:37:05','hadesDbSvcUser@172.19.0.1'),(100628,'QATestingWX7H',NULL,1,'InB28wtnluFRhRVBaYhNnwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3mze479y0lilw_252104055524','2025-04-22 05:55:24',NULL,0,-1,'2025-04-21 05:55:24','2025-04-21 05:55:24','hadesDbSvcUser@172.19.0.1'),(100629,'QATestingUTFH',NULL,1,'PbyMCIRBM6f+cAdkwe0AKQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3mzfxkax3wtds_252104055828','2025-04-22 05:58:28',NULL,0,-1,'2025-04-21 05:58:28','2025-04-21 05:58:28','hadesDbSvcUser@172.19.0.1'),(100630,'QATestingIU6Q',NULL,1,'rNiAXU/F/5ThLfJ63UHoCgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3n0618w2t1bpp_252104064239','2025-04-22 06:42:39',NULL,0,-1,'2025-04-21 06:42:39','2025-04-21 06:42:39','hadesDbSvcUser@172.19.0.1'),(100631,'QATestingUZJB',NULL,1,'TAzZd4BKZw4PV5JbbkFuJwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3n0uu4tgoxu7v_252104072438','2025-04-22 07:24:38',NULL,0,-1,'2025-04-21 07:24:38','2025-04-21 07:24:38','hadesDbSvcUser@172.19.0.1'),(100632,'QATesting7RXT',NULL,1,'FwKbEDjCwE2vdYXsQEUI/wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3n1pw6xs2k7p1_252104081712','2025-04-22 08:17:12',NULL,0,-1,'2025-04-21 08:17:12','2025-04-21 08:17:12','hadesDbSvcUser@172.19.0.1'),(100633,'QATestingDHIA',NULL,1,'9qsDp5DflNO7F+ghxJo3swIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3n29fcdthli96_252104085016','2025-04-22 08:50:16',NULL,0,-1,'2025-04-21 08:50:16','2025-04-21 08:50:16','hadesDbSvcUser@172.19.0.1'),(100634,'QATestingYYBV',NULL,1,'pp1b8Zr36j46PA1QdDD4KAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3n3qm4zm2gt2y_252104102018','2025-04-22 10:20:18',NULL,0,-1,'2025-04-21 10:20:18','2025-04-21 10:20:18','hadesDbSvcUser@172.19.0.1'),(100635,'QATestingBZJP',NULL,1,'sPFlhAUWfTfe3gnCcBAWUgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3n62pl1o7tvyx_252104124239','2025-04-22 12:42:39',NULL,0,-1,'2025-04-21 12:42:39','2025-04-21 12:42:39','hadesDbSvcUser@172.19.0.1'),(100636,'QATesting432L',NULL,1,'i4OpMQzqoNg+4UZ1N63SiQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'1emvgwl0b3n63e8bbama2k_252104124348','2025-04-22 12:43:48',NULL,0,-1,'2025-04-21 12:43:48','2025-04-21 12:43:48','hadesDbSvcUser@172.19.0.1'),(100637,'QATestingHMNB',NULL,1,'B6JR+PaGSnqyKbxOgMFoVgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u330mq6qnaidpilr_252204142658','2025-04-23 14:26:58',NULL,0,-1,'2025-04-22 14:26:58','2025-04-22 14:26:58','hadesDbSvcUser@172.19.0.1'),(100638,'QATestingU6Q2',NULL,1,'Q8VPUbedgavR1aBP+FBITgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u330msrgzznzrpbr_252204144240','2025-04-23 14:42:40',NULL,0,-1,'2025-04-22 14:42:40','2025-04-22 14:42:40','hadesDbSvcUser@172.19.0.1'),(100639,'QATesting0739',NULL,1,'tSJ3XX7caCE0ze4RBahMyAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u330mzgiskegtlzn_252204152328','2025-04-23 15:23:28',NULL,0,-1,'2025-04-22 15:23:28','2025-04-22 15:23:28','hadesDbSvcUser@172.19.0.1'),(100640,'QATesting1A2R',NULL,1,'cYONqiyBq/R63wLsDU8NawIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u330ss3al3crn0kh_252304123447','2025-04-24 12:34:47',NULL,0,-1,'2025-04-23 12:34:47','2025-04-23 12:34:47','hadesDbSvcUser@172.19.0.1'),(100641,'QATestingH950',NULL,1,'1wuGiECEYyMbGYvn8mo21wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'e2cqp1u33176wvgg4t0oq5_252504171617','2025-04-26 17:16:17',NULL,0,-1,'2025-04-25 17:16:17','2025-04-25 17:16:17','hadesDbSvcUser@172.19.0.1'),(100642,'QATestingI4J5',NULL,1,'qsouZiTQH5EtsJd3b6C0VQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuuctxjy5dn6g8on_252604041439','2025-04-27 04:14:39',NULL,0,-1,'2025-04-26 04:14:39','2025-04-26 04:14:39','hadesDbSvcUser@172.19.0.1'),(100643,'QATestingXNCO',NULL,1,'Sa9u3V7yRlUi5eB9pt1rnQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuucxzgmbrrt0jbq_252604054333','2025-04-27 05:43:33',NULL,0,-1,'2025-04-26 05:43:33','2025-04-26 05:43:33','hadesDbSvcUser@172.19.0.1'),(100644,'QATestingPPT9',NULL,1,'F6l1ZAB5r3X343fykLwqUgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuucy6wz3kgt07kf_252604054806','2025-04-27 05:48:06',NULL,0,-1,'2025-04-26 05:48:06','2025-04-26 05:48:06','hadesDbSvcUser@172.19.0.1'),(100645,'QATesting2B9J',NULL,1,'9JSj8OlWaufLKGA9ogw6owIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuudeweakhn8tmog_252604115437','2025-04-27 11:54:37',NULL,0,-1,'2025-04-26 11:54:37','2025-04-26 11:54:37','hadesDbSvcUser@172.19.0.1'),(100646,'QATestingOYUN',NULL,1,'319ozjrm5Jh6i39Y5nOq/AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuudf1yhu7738a5l_252604115800','2025-04-27 11:58:00',NULL,0,-1,'2025-04-26 11:58:00','2025-04-26 11:58:00','hadesDbSvcUser@172.19.0.1'),(100647,'QATesting78WJ',NULL,1,'VkLaFlaD0yhPQgvz1HIsvwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuudij9a1wtwg2nl_252604131421','2025-04-27 13:14:21',NULL,0,-1,'2025-04-26 13:14:21','2025-04-26 13:14:21','hadesDbSvcUser@172.19.0.1'),(100648,'QATestingQ2PZ',NULL,1,'B6M/uUmT7CjONO0uSRAM9AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuudjm1ytwo7y22d_252604133800','2025-04-27 13:38:00',NULL,0,-1,'2025-04-26 13:38:00','2025-04-26 13:38:00','hadesDbSvcUser@172.19.0.1'),(100649,'QATestingPW0K',NULL,1,'yoqaZCmuMieneC+mlAeL3wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuuetzrau1v394nz_252704063527','2025-04-28 06:35:27',NULL,0,-1,'2025-04-27 06:35:27','2025-04-27 06:35:27','hadesDbSvcUser@172.19.0.1'),(100650,'QATesting0MGX',NULL,1,'B+b9ipBW+cgHbJOsLqfzIQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuuh0it1e881v5o6_252804111808','2025-04-29 11:18:08',NULL,0,-1,'2025-04-28 11:18:08','2025-04-28 11:18:08','hadesDbSvcUser@172.19.0.1'),(100651,'QATestingR0J7',NULL,1,'3C4oRNMFCBm52XFTRT/AhQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuuiyvo02n6xcy39_252904130134','2025-04-30 13:01:34',NULL,0,-1,'2025-04-29 13:01:34','2025-04-29 13:01:34','hadesDbSvcUser@172.19.0.1'),(100652,'QATestingXG3I',NULL,1,'SvKUIF/zR1NoaO/ujTY8OAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuutxze3ghj82mg2_250505132856','2025-05-06 13:28:56',NULL,0,-1,'2025-05-05 13:28:56','2025-05-05 13:28:56','hadesDbSvcUser@172.19.0.1'),(100653,'QATestingZUU1',NULL,1,'IRu43WR7TWF9Geb1/+r3/wIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuuvfb7n3mqaso5s_250605085847','2025-05-07 08:58:47',NULL,0,-1,'2025-05-06 08:58:47','2025-05-06 08:58:47','hadesDbSvcUser@172.19.0.1'),(100654,'QATestingGMWU',NULL,1,'RD7eUVjpWHc3+mIJSHfw1AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuuxkezd88musseh_250705131014','2025-05-08 13:10:14',NULL,0,-1,'2025-05-07 13:10:14','2025-05-07 13:10:14','hadesDbSvcUser@172.19.0.1'),(100655,'QATestingP07N',NULL,1,'Y/Ko69TerlE/O/sGtPvWqQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuuxkopj49jboea7_250705131609','2025-05-08 13:16:09',NULL,0,-1,'2025-05-07 13:16:09','2025-05-07 13:16:09','hadesDbSvcUser@172.19.0.1'),(100656,'QATestingN4XG',NULL,1,'aD1TZH9ae87kT4j45quQvwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuv6oldme3toc1f8_251205130927','2025-05-13 13:09:27',NULL,0,-1,'2025-05-12 13:09:27','2025-05-12 13:09:27','hadesDbSvcUser@172.19.0.1'),(100657,'QATestingWD2S',NULL,1,'xsJCD5H8Ya116AOCqRZMNAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvbs3c3oe39b5so_251505081451','2025-05-16 08:14:51',NULL,0,-1,'2025-05-15 08:14:51','2025-05-15 08:14:51','hadesDbSvcUser@172.19.0.1'),(100658,'QATestingF7H1',NULL,1,'UWhMmlWCYJZlwzeUtDLlNQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvbw2oznq8hvdow_251505094213','2025-05-16 09:42:13',NULL,0,-1,'2025-05-15 09:42:13','2025-05-15 09:42:13','hadesDbSvcUser@172.19.0.1'),(100659,'QATestingOA0D',NULL,1,'sYMW0H0ga7EYN659E7vqjAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvc3wik4jfw9y6l_251505123356','2025-05-16 12:33:56',NULL,0,-1,'2025-05-15 12:33:56','2025-05-15 12:33:56','hadesDbSvcUser@172.19.0.1'),(100660,'QATestingW9HO',NULL,1,'BVdjGkO301x6sQCeRPoB2AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvdqtcawv1sqkho_251605100617','2025-05-17 10:06:17',NULL,0,-1,'2025-05-16 10:06:17','2025-05-16 10:06:17','hadesDbSvcUser@172.19.0.1'),(100661,'QATestingBRPG',NULL,1,'pTgNaRG0oj7z5w8AAJiCLgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvkvxsocr0id1l2_252005080648','2025-05-21 08:06:48',NULL,0,-1,'2025-05-20 08:06:48','2025-05-20 08:06:48','hadesDbSvcUser@172.19.0.1'),(100662,'QATestingN2FZ',NULL,1,'86LjLS2O7hdKpILCDSZGjwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvl72u3vr0oiupn_252005121110','2025-05-21 12:11:10',NULL,0,-1,'2025-05-20 12:11:10','2025-05-20 12:11:10','hadesDbSvcUser@172.19.0.1'),(100663,'QATestingT84L',NULL,1,'spDwPwwLrCHpeXiVJFkP8AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvla4xx4f6ykc6t_252005131816','2025-05-21 13:18:16',NULL,0,-1,'2025-05-20 13:18:16','2025-05-20 13:18:16','hadesDbSvcUser@172.19.0.1'),(100664,'QATesting3T13',NULL,1,'4Q1obUI6IA4XWzn9aKth5AIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvlabqexx6bq4p4_252005132224','2025-05-21 13:22:24',NULL,0,-1,'2025-05-20 13:22:24','2025-05-20 13:22:24','hadesDbSvcUser@172.19.0.1'),(100665,'QATestingQ7WF',NULL,1,'6JTtcza/ROQE9rv8hYoLUwIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvmo30bq8fwf5m8_252105073356','2025-05-22 07:33:56',NULL,0,-1,'2025-05-21 07:33:56','2025-05-21 07:33:56','hadesDbSvcUser@172.19.0.1'),(100666,'QATestingSO8M',NULL,1,'4LFuX7kCuAbylSzDqNKLiAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvmo5syldbmxime_252105073538','2025-05-22 07:35:38',NULL,0,-1,'2025-05-21 07:35:38','2025-05-21 07:35:38','hadesDbSvcUser@172.19.0.1'),(100667,'QATesting3VUN',NULL,1,'5YHmxuXWnBIhHesNHpnIEQIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvn3g4ev2ry8p64_252105131059','2025-05-22 13:10:59',NULL,0,-1,'2025-05-21 13:10:59','2025-05-21 13:10:59','hadesDbSvcUser@172.19.0.1'),(100668,'QATestingASTR',NULL,1,'QyJbzbzSp1vh08rKsTlzQAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvovguvp5s2uhy3_252205123524','2025-05-23 12:35:24',NULL,0,-1,'2025-05-22 12:35:24','2025-05-22 12:35:24','hadesDbSvcUser@172.19.0.1'),(100669,'QATestingGTKJ',NULL,1,'s4ENKUAFhz7Gi2W8r+OWKAIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvovmjufc1khnf4_252205123852','2025-05-23 12:38:52',NULL,0,-1,'2025-05-22 12:38:52','2025-05-22 12:38:52','hadesDbSvcUser@172.19.0.1'),(100670,'QATesting4T3A',NULL,1,'Oe+kSbSsGOh4I1KqiKMu2gIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvoydpu8dj78bz8_252205133918','2025-05-23 13:39:18',NULL,0,-1,'2025-05-22 13:39:18','2025-05-22 13:39:18','hadesDbSvcUser@172.19.0.1'),(100671,'QATestingG4DO',NULL,1,'gR20j+LQGwZfnPbp6kyKBgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvw78cr8sanl00a_252605130134','2025-05-27 13:01:34',NULL,0,-1,'2025-05-26 13:01:34','2025-05-26 13:01:34','hadesDbSvcUser@172.19.0.1'),(100672,'QATestingPH4Z',NULL,1,'3fa+LiIVAmhRquWu3KfzrgIvzMLXEnhT1YuQHiLhuC8=',-1,1,'3wnjeyicuvxr3l8ajxdsw6p_252705092708','2025-05-28 09:27:08',NULL,0,-1,'2025-05-27 09:27:08','2025-05-27 09:27:08','hadesDbSvcUser@172.19.0.1'); +/*!40000 ALTER TABLE `users_v3` ENABLE KEYS */; +UNLOCK TABLES; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_users_v3_insert_trigger BEFORE INSERT ON hades_db.users_v3 +FOR EACH ROW BEGIN +SET NEW.creation_date = NOW(); +SET NEW.last_updated_by = USER(); +SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +ALTER DATABASE `hades_db` CHARACTER SET latin1 COLLATE latin1_swedish_ci ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = latin1 */ ; +/*!50003 SET character_set_results = latin1 */ ; +/*!50003 SET collation_connection = latin1_swedish_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER hades_db_users_v3_update_trigger BEFORE UPDATE ON hades_db.users_v3 +FOR EACH ROW +BEGIN + SET NEW.last_updated_by = USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +ALTER DATABASE `hades_db` CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci ; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2025-12-10 7:01:10 diff --git a/property-settings-svc-v2-chart/logs b/property-settings-svc-v2-chart/logs new file mode 100644 index 0000000..d15ef52 --- /dev/null +++ b/property-settings-svc-v2-chart/logs @@ -0,0 +1,17092 @@ +<2025-12-24 05:18:04,355> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:18:04 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:04,356> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:04,356> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:04,541> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:18:04 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:04,541> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:04,541> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:20,606> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:18:20 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c07c5c5 ---> idle_time: 81223; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c07c5c5 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:18:20,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c07c5c5 +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24864206 ---> idle_time: 81223; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24864206 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:20,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3c07c5c5 +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33f980c6 ---> idle_time: 81224; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33f980c6 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:18:20,607> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:18:20,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24864206 +<2025-12-24 05:18:20,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@24864206 +<2025-12-24 05:18:20,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33f980c6 +<2025-12-24 05:18:20,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@33f980c6 +<2025-12-24 05:18:20,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3c07c5c5 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:18:20,608> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3c07c5c5 +<2025-12-24 05:18:20,608> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c07c5c5 +<2025-12-24 05:18:20,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@33f980c6 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:18:20,608> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@33f980c6 +<2025-12-24 05:18:20,608> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33f980c6 +<2025-12-24 05:18:20,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@24864206 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:18:20,608> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@24864206 +<2025-12-24 05:18:20,608> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24864206 +<2025-12-24 05:18:20,619> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:18:20,619> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:18:20,619> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:18:20,620> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:18:20,620> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:18:20,620> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:18:20,620> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:18:20,620> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:18:20,620> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:18:20,792> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:18:20 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:20,792> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:20,792> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:36,857> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:18:36 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:36,858> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:36,858> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:37,043> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:18:37 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:37,043> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:37,043> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:40,188> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:18:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:40,189> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:18:40,189> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@182242ae] on IDLE CHECK. +<2025-12-24 05:18:40,189> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@52c7d1b9] on IDLE CHECK. +<2025-12-24 05:18:40,189> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@8cab559] on IDLE CHECK. +<2025-12-24 05:18:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@182242ae] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@30382531] on IDLE CHECK. +<2025-12-24 05:18:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@8cab559] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@52c7d1b9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@63957728] on IDLE CHECK. +<2025-12-24 05:18:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@58291b9f] on IDLE CHECK. +<2025-12-24 05:18:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@30382531] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1621b500] on IDLE CHECK. +<2025-12-24 05:18:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1621b500] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@38987b7c] on IDLE CHECK. +<2025-12-24 05:18:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@63957728] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@adfea71] on IDLE CHECK. +<2025-12-24 05:18:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@58291b9f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@699056c4] on IDLE CHECK. +<2025-12-24 05:18:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@38987b7c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@adfea71] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@699056c4] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,244> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:18:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:40,244> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:18:40,244> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4ae453df] on IDLE CHECK. +<2025-12-24 05:18:40,244> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60946feb] on IDLE CHECK. +<2025-12-24 05:18:40,244> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@51924d83] on IDLE CHECK. +<2025-12-24 05:18:40,245> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60946feb] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,245> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1945d2e9] on IDLE CHECK. +<2025-12-24 05:18:40,245> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4ae453df] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,245> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6b2f1273] on IDLE CHECK. +<2025-12-24 05:18:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@51924d83] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@702923ea] on IDLE CHECK. +<2025-12-24 05:18:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6b2f1273] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@167dfcc9] on IDLE CHECK. +<2025-12-24 05:18:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1945d2e9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2d9fdd05] on IDLE CHECK. +<2025-12-24 05:18:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@702923ea] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@27477e0c] on IDLE CHECK. +<2025-12-24 05:18:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2d9fdd05] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1523ee8b] on IDLE CHECK. +<2025-12-24 05:18:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@167dfcc9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@27477e0c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1523ee8b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:18:53,108> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:18:53 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:53,108> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:53,108> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:18:53,294> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:18:53 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:53,294> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:18:53,294> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,357> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:19:09 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,357> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,358> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1945d2e9 ---> idle_time: 81208; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,358> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1945d2e9 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,358> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,358> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1945d2e9 +<2025-12-24 05:19:09,358> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,358> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1945d2e9 +<2025-12-24 05:19:09,358> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6b2f1273 ---> idle_time: 81209; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,358> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6b2f1273 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,358> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,358> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,359> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@702923ea ---> idle_time: 81211; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,359> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6b2f1273 +<2025-12-24 05:19:09,359> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6b2f1273 +<2025-12-24 05:19:09,359> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@702923ea [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,361> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@702923ea +<2025-12-24 05:19:09,361> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@702923ea +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@167dfcc9 ---> idle_time: 81213; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@167dfcc9 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2d9fdd05 ---> idle_time: 81216; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2d9fdd05 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@27477e0c ---> idle_time: 81216; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@27477e0c [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1523ee8b ---> idle_time: 81216; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1523ee8b [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:19:09,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:19:09,362> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6b2f1273 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6b2f1273 +<2025-12-24 05:19:09,362> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@702923ea closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@702923ea +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@702923ea +<2025-12-24 05:19:09,362> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1945d2e9 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1945d2e9 +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1945d2e9 +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2d9fdd05 +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2d9fdd05 +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@167dfcc9 +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@167dfcc9 +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6b2f1273 +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@27477e0c +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@27477e0c +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2d9fdd05 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@27477e0c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@27477e0c +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@27477e0c +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1523ee8b +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1523ee8b +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2d9fdd05 +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2d9fdd05 +<2025-12-24 05:19:09,363> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@167dfcc9 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@167dfcc9 +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@167dfcc9 +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1523ee8b closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1523ee8b +<2025-12-24 05:19:09,364> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1523ee8b +<2025-12-24 05:19:09,389> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:19:09,389> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:19:09,389> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:19:09,390> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,390> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,390> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,390> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:19:09,390> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:19:09,390> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:19:09,422> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:19:09,422> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:19:09,423> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,423> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,423> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:19:09,423> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:19:09,423> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:19:09,423> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,423> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:19:09,425> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:19:09,425> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:09,425> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:19:09 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@182242ae ---> idle_time: 81236; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@182242ae [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8cab559 ---> idle_time: 81238; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,545> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@182242ae +<2025-12-24 05:19:09,545> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@182242ae +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8cab559 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@52c7d1b9 ---> idle_time: 81238; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@52c7d1b9 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,545> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8cab559 +<2025-12-24 05:19:09,546> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@8cab559 +<2025-12-24 05:19:09,545> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@30382531 ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,546> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@30382531 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,546> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@52c7d1b9 +<2025-12-24 05:19:09,546> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@52c7d1b9 +<2025-12-24 05:19:09,546> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,546> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@182242ae closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,546> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@182242ae +<2025-12-24 05:19:09,546> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@182242ae +<2025-12-24 05:19:09,546> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@30382531 +<2025-12-24 05:19:09,546> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@30382531 +<2025-12-24 05:19:09,546> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,546> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@63957728 ---> idle_time: 81243; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,546> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@63957728 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,546> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@30382531 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@30382531 +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@30382531 +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@52c7d1b9 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@52c7d1b9 +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@52c7d1b9 +<2025-12-24 05:19:09,546> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@8cab559 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@8cab559 +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8cab559 +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@63957728 +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@63957728 +<2025-12-24 05:19:09,546> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,547> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,547> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@58291b9f ---> idle_time: 81245; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,547> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@58291b9f [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,547> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,547> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,547> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1621b500 ---> idle_time: 81246; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,547> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1621b500 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,547> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,547> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,547> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@38987b7c ---> idle_time: 81249; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@38987b7c [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@63957728 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,548> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@63957728 +<2025-12-24 05:19:09,548> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@63957728 +<2025-12-24 05:19:09,548> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@38987b7c +<2025-12-24 05:19:09,548> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@38987b7c +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@58291b9f +<2025-12-24 05:19:09,548> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@58291b9f +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@adfea71 ---> idle_time: 81251; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@adfea71 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@699056c4 ---> idle_time: 81251; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@699056c4 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 8 +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 9 +<2025-12-24 05:19:09,547> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1621b500 +<2025-12-24 05:19:09,548> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1621b500 +<2025-12-24 05:19:09,548> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@38987b7c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@38987b7c +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@38987b7c +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@adfea71 +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@adfea71 +<2025-12-24 05:19:09,548> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 10 +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1621b500 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1621b500 +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1621b500 +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@adfea71 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@adfea71 +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@adfea71 +<2025-12-24 05:19:09,548> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@58291b9f closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@58291b9f +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@58291b9f +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@699056c4 +<2025-12-24 05:19:09,549> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@699056c4 +<2025-12-24 05:19:09,550> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@699056c4 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:09,551> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@699056c4 +<2025-12-24 05:19:09,551> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@699056c4 +<2025-12-24 05:19:09,554> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:19:09,554> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,554> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 9 +<2025-12-24 05:19:09,554> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:19:09,554> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,554> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 8 +<2025-12-24 05:19:09,555> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:19:09,555> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,555> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 7 +<2025-12-24 05:19:09,558> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:19:09,558> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,558> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:19:09,559> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:19:09,559> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,559> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:19:09,560> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:19:09,560> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,560> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:19:09,566> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:19:09,566> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,566> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:19:09,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:19:09,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:19:09,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:19:09,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:19:09,571> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:19:09,571> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:09,571> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:19:25,609> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:19:25 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:25,609> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:25,609> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:25,796> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:19:25 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:25,796> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:25,796> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:40,189> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:19:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:40,190> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:19:40,190> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3147c26d] on IDLE CHECK. +<2025-12-24 05:19:40,190> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4d82007f] on IDLE CHECK. +<2025-12-24 05:19:40,190> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1fa6b6b2] on IDLE CHECK. +<2025-12-24 05:19:40,191> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4d82007f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,191> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1fa6b6b2] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@62b36e65] on IDLE CHECK. +<2025-12-24 05:19:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4a7390d5] on IDLE CHECK. +<2025-12-24 05:19:40,191> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3147c26d] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@33178f5e] on IDLE CHECK. +<2025-12-24 05:19:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@33178f5e] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@17394ed7] on IDLE CHECK. +<2025-12-24 05:19:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@62b36e65] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3acc9221] on IDLE CHECK. +<2025-12-24 05:19:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4a7390d5] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4c35b748] on IDLE CHECK. +<2025-12-24 05:19:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3acc9221] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@17394ed7] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@f6a47c0] on IDLE CHECK. +<2025-12-24 05:19:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4c35b748] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,201> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@f6a47c0] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,245> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:19:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:40,245> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:40,245> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6f7151] on IDLE CHECK. +<2025-12-24 05:19:40,245> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1e56ffe1] on IDLE CHECK. +<2025-12-24 05:19:40,245> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@199bcf7f] on IDLE CHECK. +<2025-12-24 05:19:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6f7151] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@14c40e8f] on IDLE CHECK. +<2025-12-24 05:19:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1e56ffe1] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@507c35ef] on IDLE CHECK. +<2025-12-24 05:19:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@199bcf7f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@12bf4902] on IDLE CHECK. +<2025-12-24 05:19:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@12bf4902] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1065c7e0] on IDLE CHECK. +<2025-12-24 05:19:40,248> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@507c35ef] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,248> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4ae453df] on IDLE CHECK. +<2025-12-24 05:19:40,248> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@14c40e8f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,248> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60946feb] on IDLE CHECK. +<2025-12-24 05:19:40,248> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1065c7e0] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,248> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@51924d83] on IDLE CHECK. +<2025-12-24 05:19:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4ae453df] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60946feb] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@51924d83] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:19:41 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4ae453df ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4ae453df [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60946feb ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60946feb [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@51924d83 ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@51924d83 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:19:41,859> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:19:41,860> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4ae453df +<2025-12-24 05:19:41,860> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4ae453df +<2025-12-24 05:19:41,860> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60946feb +<2025-12-24 05:19:41,860> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@60946feb +<2025-12-24 05:19:41,860> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@51924d83 +<2025-12-24 05:19:41,860> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@51924d83 +<2025-12-24 05:19:41,860> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@60946feb closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:41,861> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@60946feb +<2025-12-24 05:19:41,861> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60946feb +<2025-12-24 05:19:41,861> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@4ae453df closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:41,861> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4ae453df +<2025-12-24 05:19:41,861> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4ae453df +<2025-12-24 05:19:41,860> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@51924d83 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:19:41,861> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@51924d83 +<2025-12-24 05:19:41,861> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@51924d83 +<2025-12-24 05:19:41,875> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:19:41,875> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:19:41,875> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:19:41,875> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:41,875> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:41,875> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:19:41,875> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:19:41,875> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:19:41,876> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:19:42,047> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:19:42 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:42,047> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:42,047> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:58,112> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:19:58 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:58,112> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:58,112> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:19:58,299> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:19:58 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:58,299> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:19:58,299> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:08,259> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-1](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-1](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-1](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-1](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:08,259> DEBUG [http-8080-1](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"bdo477yfpr56xhf8p","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:08,259> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"bdo477yfpr56xhf8q","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:08,259> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"bdo477yfpr56xhf8o","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:08,269> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:08,269> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:08,269> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:08,269> DEBUG [http-8080-1](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:08,269> DEBUG [http-8080-1](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:08,269> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:08,269> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:08,269> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:08,269> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:08,269> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:20:08,269> DEBUG [http-8080-1](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:08,269> DEBUG [http-8080-1](SOKRATI) - Request Authorized +<2025-12-24 05:20:08,269> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:08,269> DEBUG [http-8080-1](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:08,269> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:08,269> ERROR [http-8080-1](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:08,269> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:08,269> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:08,270> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:08,270> ERROR [http-8080-1](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:08,271> ERROR [http-8080-1](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:08,270> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:08,271> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:08,271> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:08,379> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:08,379> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:08,379> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:08,379> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:08,379> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"bdo477yfpr56xl36r","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:08,380> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:08,380> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:08,380> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:08,380> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:08,380> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:08,380> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:08,380> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:08,380> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:08,989> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:08,989> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:08,989> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:08,989> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:08,989> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"bdo477yfpr56xyct8","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:08,990> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:08,990> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:08,991> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:08,991> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:08,991> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:08,991> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:08,991> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:08,991> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:08,998> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:08,998> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:08,998> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:08,998> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:08,998> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"bdo477yfpr56xylat","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:08,998> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:08,998> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:08,998> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:08,998> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:08,998> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:08,998> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:08,998> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:08,999> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:10,002> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:10,002> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:10,002> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:10,002> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:10,003> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"bdo477yfpr56yk2g6","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:10,004> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:10,004> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:10,004> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:10,004> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:10,004> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:10,004> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:10,004> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:10,004> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:11,009> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:11,009> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:11,009> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:11,009> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:11,009> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"bdo477yfpr56z5mon","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:11,011> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:11,011> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:11,011> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:11,011> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:11,011> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:11,011> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:11,011> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:11,011> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:12,008> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:12,008> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:12,008> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:12,008> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:12,008> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"bdo477yfpr56zr2ag","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:12,009> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:12,009> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:12,009> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:12,009> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:12,009> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:12,009> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:12,009> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:12,009> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:13,013> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:13,013> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:13,013> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:13,013> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:13,014> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"bdo477yfpr570ch4h","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:13,020> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:13,020> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:13,021> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:13,021> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:13,021> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:13,021> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:13,021> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:13,022> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:14,010> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:14,010> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:14,010> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:14,010> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:14,010> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jfy9fay2","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:14,011> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:14,011> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:14,011> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:14,011> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:14,011> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:14,011> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:14,011> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:14,011> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:14,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:20:14 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:14,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:14,361> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:14,550> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:20:14 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:14,550> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:14,551> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:15,007> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:15,007> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:15,007> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:15,007> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:15,007> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jfyfczuj","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:15,008> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:15,008> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:15,008> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:15,008> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:15,008> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:15,008> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:15,008> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:15,008> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:16,010> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:16,010> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:16,010> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:16,010> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:16,010> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jfylbz1o","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:16,011> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:16,011> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:16,011> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:16,011> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:16,011> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:16,011> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:16,012> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:16,012> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:17,008> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:17,008> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:17,008> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:17,008> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:17,008> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jfyr9vnx","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:17,009> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:17,009> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:17,009> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:17,009> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:17,009> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:17,009> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:17,009> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:17,010> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:18,002> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:18,002> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:18,002> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:18,002> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:18,002> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jfyx7kke","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:18,003> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:18,003> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:18,003> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:18,003> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:18,003> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:18,003> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:18,003> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:18,003> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:19,027> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:19,027> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:19,027> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:19,027> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:19,027> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jfz39z7z","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:19,029> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:19,029> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:19,029> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:19,029> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:19,029> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:19,029> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:19,029> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:19,030> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:20,012> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:20,012> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:20,012> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:20,012> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:20,012> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jfz95iyo","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:20,013> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:20,013> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:20,013> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:20,013> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:20,013> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:20,013> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:20,013> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:20,013> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:21,007> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:21,007> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:21,007> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:21,007> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:21,008> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jfzf3fkx","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:21,010> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:21,010> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:21,010> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:21,010> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:21,010> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:21,010> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:21,010> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:21,010> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:22,001> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:22,001> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:22,001> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:22,001> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:22,001> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jfzl0p1u","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:22,001> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:22,001> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:22,001> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:22,001> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:22,002> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:22,002> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:22,002> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:22,002> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:23,009> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:23,009> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:23,009> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:23,009> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:23,009> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jfzqzo8z","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:23,011> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:23,011> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:23,011> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:23,011> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:23,011> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:23,011> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:23,011> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:23,011> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:24,000> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:24,000> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:24,000> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:24,000> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:24,000> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jfzwx5fo","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:24,000> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:24,000> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:24,000> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:24,000> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:24,000> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:24,000> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:24,000> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:24,001> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:25,010> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:25,010> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:25,010> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:25,010> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:25,010> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg02wzhx","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:25,011> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:25,011> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:25,011> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:25,011> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:25,011> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:25,011> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:25,011> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:25,012> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:26,089> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:26,089> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:26,089> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:26,090> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:26,090> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg09be92","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:26,094> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:26,094> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:26,094> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:26,094> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:26,094> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:26,094> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:26,094> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:26,094> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:27,004> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:27,004> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:27,004> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:27,004> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:27,005> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg0esl0n","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:27,007> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:27,007> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:27,007> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:27,007> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:27,007> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:27,007> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:27,008> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:27,008> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:28,004> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:28,004> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:28,004> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:28,004> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:28,004> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg0kr4s8","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:28,005> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:28,005> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:28,005> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:28,005> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:28,005> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:28,005> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:28,005> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:28,005> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:29,000> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:29,000> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:29,000> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:29,000> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:29,000> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg0qotop","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:29,001> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:29,001> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:29,001> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:29,001> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:29,001> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:29,001> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:29,001> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:29,001> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:30,000> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:30,000> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:30,000> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:30,000> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:30,000> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg0wn5qi","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:30,001> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:30,001> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:30,001> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:30,001> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:30,001> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:30,001> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:30,001> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:30,001> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:20:30 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6f7151 ---> idle_time: 81186; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6f7151 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1e56ffe1 ---> idle_time: 81188; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1e56ffe1 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,611> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6f7151 +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@199bcf7f ---> idle_time: 81188; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@199bcf7f [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,611> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1e56ffe1 +<2025-12-24 05:20:30,611> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1e56ffe1 +<2025-12-24 05:20:30,611> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@199bcf7f +<2025-12-24 05:20:30,611> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6f7151 +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@14c40e8f ---> idle_time: 81188; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@14c40e8f [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,611> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@507c35ef ---> idle_time: 81221; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@507c35ef [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@12bf4902 ---> idle_time: 81223; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@12bf4902 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1065c7e0 ---> idle_time: 81224; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1065c7e0 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:20:30,613> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:20:30,611> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@199bcf7f +<2025-12-24 05:20:30,613> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1e56ffe1 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1e56ffe1 +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1e56ffe1 +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@14c40e8f +<2025-12-24 05:20:30,613> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6f7151 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6f7151 +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6f7151 +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@507c35ef +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@507c35ef +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@14c40e8f +<2025-12-24 05:20:30,613> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@199bcf7f closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@199bcf7f +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@199bcf7f +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@12bf4902 +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@12bf4902 +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@507c35ef closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@12bf4902 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@14c40e8f closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@14c40e8f +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@14c40e8f +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1065c7e0 +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1065c7e0 +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@12bf4902 +<2025-12-24 05:20:30,615> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@12bf4902 +<2025-12-24 05:20:30,614> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@507c35ef +<2025-12-24 05:20:30,615> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@507c35ef +<2025-12-24 05:20:30,615> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1065c7e0 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,615> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1065c7e0 +<2025-12-24 05:20:30,615> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1065c7e0 +<2025-12-24 05:20:30,635> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:20:30,635> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:20:30,635> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,635> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:20:30,635> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:20:30,635> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,635> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:20:30,635> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,635> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:20:30,642> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:20:30,643> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,643> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:20:30,645> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:20:30,646> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,646> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:20:30,645> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:20:30,646> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,646> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:20:30,654> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:20:30,655> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:30,655> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:20:30 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1fa6b6b2 ---> idle_time: 81230; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1fa6b6b2 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3147c26d ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3147c26d [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1fa6b6b2 +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1fa6b6b2 +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4d82007f ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4d82007f [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@62b36e65 ---> idle_time: 81235; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@62b36e65 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4d82007f +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4d82007f +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3147c26d +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3147c26d +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1fa6b6b2 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1fa6b6b2 +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1fa6b6b2 +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@62b36e65 +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@62b36e65 +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4a7390d5 ---> idle_time: 81241; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4a7390d5 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33178f5e ---> idle_time: 81242; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33178f5e [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3147c26d closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3147c26d +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3147c26d +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4a7390d5 +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4a7390d5 +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@4d82007f closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4d82007f +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4d82007f +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33178f5e +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@4a7390d5 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4a7390d5 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4a7390d5 +<2025-12-24 05:20:30,801> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17394ed7 ---> idle_time: 81244; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17394ed7 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3acc9221 ---> idle_time: 81247; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,801> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@62b36e65 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@62b36e65 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@62b36e65 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17394ed7 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@17394ed7 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3acc9221 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c35b748 ---> idle_time: 81248; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@17394ed7 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@17394ed7 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17394ed7 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@33178f5e +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3acc9221 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3acc9221 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c35b748 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@33178f5e closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@33178f5e +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33178f5e +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c35b748 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4c35b748 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3acc9221 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3acc9221 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3acc9221 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@f6a47c0 ---> idle_time: 81248; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@f6a47c0 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@4c35b748 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4c35b748 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c35b748 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@f6a47c0 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@f6a47c0 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 8 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 9 +<2025-12-24 05:20:30,802> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 10 +<2025-12-24 05:20:30,802> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@f6a47c0 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:20:30,803> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@f6a47c0 +<2025-12-24 05:20:30,803> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@f6a47c0 +<2025-12-24 05:20:30,813> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:20:30,813> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,813> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 9 +<2025-12-24 05:20:30,815> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:20:30,815> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,815> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 8 +<2025-12-24 05:20:30,816> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:20:30,816> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,816> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 7 +<2025-12-24 05:20:30,818> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:20:30,818> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,818> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:20:30,819> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:20:30,820> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,820> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:20:30,820> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:20:30,820> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,820> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:20:30,825> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:20:30,825> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,825> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:20:30,826> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:20:30,826> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,826> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:20:30,826> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:20:30,826> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,826> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:20:30,833> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:20:30,834> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:30,834> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:20:31,006> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:31,006> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:31,006> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:31,006> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:31,006> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg12ms2z","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:31,007> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:31,007> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:31,007> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:31,007> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:31,007> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:31,007> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:31,007> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:31,007> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:32,001> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:32,001> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:32,001> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:32,001> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:32,001> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg18k1jw","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:32,002> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:32,002> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:32,002> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:32,002> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:32,002> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:32,002> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:32,002> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:32,002> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:33,000> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:33,000> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:33,000> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:33,000> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:33,000> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg1ei5vx","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:33,000> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:33,000> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:33,000> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:33,000> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:33,000> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:33,000> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:33,000> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:33,001> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:34,003> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:34,003> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:34,003> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:34,003> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:34,004> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg1kgpni","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:34,006> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:34,006> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:34,006> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:34,006> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:34,006> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:34,006> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:34,007> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:34,007> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:35,001> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:35,001> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:35,002> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:35,002> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:35,002> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg1qf9f3","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:35,002> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:35,002> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:35,002> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:35,002> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:35,002> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:35,002> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:35,002> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:35,003> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:36,006> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:36,006> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:36,006> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:36,006> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:36,006> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg1wdlgw","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:36,007> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:36,007> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:36,007> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:36,007> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:36,007> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:36,007> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:36,007> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:36,007> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:37,002> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:37,002> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:37,002> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:37,002> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:37,002> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg22bxip","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:37,002> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:37,002> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:37,002> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:37,002> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:37,002> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:37,002> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:37,002> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:37,003> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:38,003> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:38,003> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:38,003> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:38,003> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:38,003> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg28a9ki","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:38,004> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:38,004> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:38,004> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:38,004> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:38,004> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:38,004> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:38,004> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:38,005> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:39,002> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:39,002> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:39,002> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:39,002> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:39,002> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"userId":null,"sokratiRequestId":"35sp607kd5jg2e866r","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:39,003> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:39,003> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:39,003> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:39,003> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:39,003> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:39,003> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:39,003> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:39,003> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:40,190> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:20:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:40,190> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:20:40,190> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3c68ed60] on IDLE CHECK. +<2025-12-24 05:20:40,190> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@40b8fde1] on IDLE CHECK. +<2025-12-24 05:20:40,190> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3763bbfa] on IDLE CHECK. +<2025-12-24 05:20:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3c68ed60] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@40b8fde1] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@427fc3fa] on IDLE CHECK. +<2025-12-24 05:20:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3763bbfa] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3c3938d5] on IDLE CHECK. +<2025-12-24 05:20:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@264f675d] on IDLE CHECK. +<2025-12-24 05:20:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@427fc3fa] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2bddf058] on IDLE CHECK. +<2025-12-24 05:20:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3c3938d5] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7524da2d] on IDLE CHECK. +<2025-12-24 05:20:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@264f675d] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2bddf058] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@ea15e31] on IDLE CHECK. +<2025-12-24 05:20:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7524da2d] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2e70c244] on IDLE CHECK. +<2025-12-24 05:20:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@ea15e31] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2e70c244] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,246> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:20:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:40,246> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:20:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@21553e64] on IDLE CHECK. +<2025-12-24 05:20:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4720156] on IDLE CHECK. +<2025-12-24 05:20:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1305d1a9] on IDLE CHECK. +<2025-12-24 05:20:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@21553e64] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@73d9c989] on IDLE CHECK. +<2025-12-24 05:20:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4720156] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1078e044] on IDLE CHECK. +<2025-12-24 05:20:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1305d1a9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,246> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2ff5897b] on IDLE CHECK. +<2025-12-24 05:20:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1078e044] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@73d9c989] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@65456892] on IDLE CHECK. +<2025-12-24 05:20:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3a32691b] on IDLE CHECK. +<2025-12-24 05:20:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2ff5897b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@42eace9d] on IDLE CHECK. +<2025-12-24 05:20:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@65456892] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@42eace9d] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7b920dd8] on IDLE CHECK. +<2025-12-24 05:20:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3a32691b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7b920dd8] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:20:41,700> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-1](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-1](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-1](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-1](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:41,700> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr57he3e9","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:41,700> DEBUG [http-8080-1](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr57he3e9","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:41,700> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr57he3e8","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:41,701> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:41,701> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:41,701> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:41,701> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:41,701> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:41,701> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:41,701> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:41,701> DEBUG [http-8080-1](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:41,701> DEBUG [http-8080-1](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:41,701> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:41,701> DEBUG [http-8080-1](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:41,701> DEBUG [http-8080-1](SOKRATI) - Request Authorized +<2025-12-24 05:20:41,701> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:41,702> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:20:41,702> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:41,702> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:41,701> DEBUG [http-8080-1](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:41,702> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:41,702> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:41,702> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:41,702> ERROR [http-8080-1](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:41,702> ERROR [http-8080-1](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:41,702> ERROR [http-8080-1](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:41,702> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:41,990> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:41,990> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:41,990> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:41,990> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:41,990> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr57hlojn","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:41,990> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:41,990> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:41,990> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:41,990> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:41,990> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:41,990> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:41,990> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:41,990> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:41,996> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:41,996> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:41,996> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:41,996> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:41,997> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr57hlupw","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:41,997> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:41,997> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:41,997> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:41,997> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:41,997> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:41,997> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:41,997> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:41,997> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:43,000> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:43,000> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:43,000> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:43,000> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:43,000> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr57i7b3h","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:43,001> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:43,001> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:43,001> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:43,001> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:43,001> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:43,001> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:43,001> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:43,001> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:43,997> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:43,997> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:43,997> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:43,997> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:43,997> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr57ispxi","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:43,998> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:43,998> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:43,998> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:43,998> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:43,998> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:43,998> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:43,998> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:43,998> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:45,000> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:45,000> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:45,000> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:45,000> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:45,000> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr57je7un","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:45,001> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:45,001> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:45,001> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:45,001> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:45,001> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:45,001> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:45,001> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:45,001> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:45,998> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:45,998> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:45,998> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:45,998> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:45,998> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr57jzmoo","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:45,999> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:45,999> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:45,999> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:45,999> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:45,999> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:45,999> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:45,999> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:45,999> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:46,863> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:20:46 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:46,863> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:46,863> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:20:47,000> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:47,000> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:47,000> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:47,000> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:47,000> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr57kl2ah","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:47,001> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:47,001> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:47,001> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:47,001> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:47,001> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:47,001> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:47,001> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:47,002> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:47,054> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:20:47 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:47,054> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:47,054> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:20:48,004> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:48,004> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:48,004> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:48,004> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:48,004> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg3vtm1m","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:48,005> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:48,005> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:48,005> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:48,005> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:48,005> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:48,005> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:48,005> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:48,005> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:49,012> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:49,012> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:49,012> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:49,012> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:49,012> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg41s5t7","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:49,013> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:49,013> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:49,013> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:49,013> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:49,013> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:49,013> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:49,013> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:49,013> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:50,011> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:50,011> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:50,011> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:50,011> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:50,011> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg47r50c","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:50,012> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:50,012> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:50,012> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:50,012> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:50,012> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:50,012> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:50,012> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:50,012> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:51,001> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:51,001> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:51,001> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:51,001> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:51,002> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg4doeh9","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:51,004> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:51,004> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:51,004> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:51,004> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:51,004> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:51,004> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:51,004> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:51,005> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:51,998> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:51,998> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:51,998> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:51,998> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:51,999> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg4jmb3i","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:51,999> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:51,999> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:51,999> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:51,999> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:51,999> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:51,999> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:51,999> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:51,999> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:53,002> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:53,002> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:53,002> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:53,002> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:53,002> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg4plaan","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:53,002> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:53,002> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:53,002> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:53,002> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:53,002> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:53,002> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:53,002> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:53,002> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:53,999> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:53,999> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:53,999> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:53,999> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:53,999> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg4viz74","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:54,000> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:54,000> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:54,000> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:54,000> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:54,000> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:54,000> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:54,000> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:54,000> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:55,009> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:55,009> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:55,009> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:55,009> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:55,009> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg51it9d","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:55,010> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:55,010> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:55,010> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:55,010> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:55,010> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:55,010> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:55,010> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:55,010> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:56,020> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:56,020> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:56,020> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:56,020> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:56,020> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg57jpwi","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:56,022> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:56,022> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:56,022> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:56,022> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:56,022> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:56,022> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:56,022> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:56,023> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:56,998> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:56,998> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:56,998> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:56,998> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:56,998> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg5ddjwz","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:56,998> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:56,999> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:56,999> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:56,999> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:56,999> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:56,999> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:56,999> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:56,999> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:58,009> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:58,009> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:58,009> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:58,009> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:58,011> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg5jcyjo","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:58,014> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:58,014> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:58,014> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:58,014> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:58,014> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:58,015> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:58,015> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:58,016> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:58,999> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:20:58,999> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:20:58,999> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:20:58,999> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:20:58,999> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg5pang5","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:20:59,000> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:20:59,000> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:20:59,000> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:20:59,000> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:20:59,000> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:20:59,000> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:20:59,000> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:20:59,000> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:00,003> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:00,003> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:00,003> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:00,003> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:00,003> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg5v977q","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:00,003> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:00,003> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:00,003> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:00,003> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:00,003> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:00,003> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:00,003> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:00,004> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:00,998> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:00,998> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:00,998> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:00,998> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:00,998> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg617bjr","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:00,998> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:00,998> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:00,998> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:00,998> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:00,998> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:00,998> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:00,999> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:00,999> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:02,000> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:02,000> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:02,000> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:02,000> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:02,000> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg675nlk","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:02,001> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:02,001> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:02,001> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:02,001> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:02,001> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:02,001> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:02,001> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:02,001> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:03,003> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:03,003> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:03,003> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:03,003> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:03,005> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg6d4uih","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:03,005> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:03,005> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:03,005> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:03,005> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:03,005> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:03,005> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:03,005> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:03,006> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:21:03 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@65456892 ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@65456892 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@42eace9d ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@42eace9d [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7b920dd8 ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:03,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@65456892 +<2025-12-24 05:21:03,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@42eace9d +<2025-12-24 05:21:03,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@65456892 +<2025-12-24 05:21:03,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@42eace9d +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7b920dd8 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:21:03,114> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:21:03,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7b920dd8 +<2025-12-24 05:21:03,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7b920dd8 +<2025-12-24 05:21:03,115> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@65456892 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:03,115> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@65456892 +<2025-12-24 05:21:03,115> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@65456892 +<2025-12-24 05:21:03,115> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7b920dd8 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:03,115> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7b920dd8 +<2025-12-24 05:21:03,115> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7b920dd8 +<2025-12-24 05:21:03,115> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@42eace9d closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:03,115> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@42eace9d +<2025-12-24 05:21:03,115> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@42eace9d +<2025-12-24 05:21:03,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:21:03,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:21:03,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:21:03,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:03,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:21:03,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:03,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:21:03,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:03,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:21:03,305> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:21:03 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:03,305> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:03,305> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:03,999> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:03,999> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:03,999> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:03,999> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:03,999> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg6j2bp6","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:04,000> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:04,000> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:04,000> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:04,000> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:04,000> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:04,000> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:04,000> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:04,000> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:05,002> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:05,002> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:05,002> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:05,002> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:05,002> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg6p0vgr","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:05,005> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:05,005> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:05,005> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:05,005> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:05,005> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:05,005> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:05,006> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:05,006> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:06,000> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:06,000> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:06,000> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:06,000> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:06,001> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg6uz7ik","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:06,002> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:06,002> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:06,002> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:06,002> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:06,002> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:06,002> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:06,002> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:06,002> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:06,999> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:06,999> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:06,999> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:06,999> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:06,999> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg70xbul","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:07,000> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:07,000> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:07,000> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:07,000> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:07,000> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:07,000> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:07,001> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:07,001> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:07,997> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:07,997> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:07,997> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:07,997> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:07,997> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg76v8gu","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:07,998> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:07,998> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:07,998> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:07,998> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:07,998> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:07,998> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:07,998> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:07,998> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:08,996> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:08,996> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:08,996> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:08,996> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:08,996> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg7ctcsv","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:08,996> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:08,996> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:08,996> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:08,996> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:08,996> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:08,996> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:08,996> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:08,997> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:10,003> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:10,003> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:10,003> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:10,003> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:10,003> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg7isrfk","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:10,004> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:10,004> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:10,004> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:10,004> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:10,004> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:10,004> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:10,004> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:10,004> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:11,001> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:11,001> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:11,001> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:11,001> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:11,002> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg7or3hd","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:11,003> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:11,003> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:11,003> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:11,003> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:11,003> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:11,003> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:11,003> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:11,003> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:12,005> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:21:12,005> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:21:12,005> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:21:12,005> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:21:12,005> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jg7up03m","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:21:12,006> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:21:12,006> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:21:12,006> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:21:12,006> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:21:12,006> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:21:12,006> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:21:12,006> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:12,006> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:21:19,366> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:21:19 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:19,367> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:19,367> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:19,556> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:21:19 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:19,556> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:19,556> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:35,617> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:21:35 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:35,618> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:35,618> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:35,807> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:21:35 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:35,807> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:35,808> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:40,189> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:21:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:40,189> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:40,189> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3c68ed60] on IDLE CHECK. +<2025-12-24 05:21:40,189> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@40b8fde1] on IDLE CHECK. +<2025-12-24 05:21:40,189> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3763bbfa] on IDLE CHECK. +<2025-12-24 05:21:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3763bbfa] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@40b8fde1] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@427fc3fa] on IDLE CHECK. +<2025-12-24 05:21:40,192> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@264f675d] on IDLE CHECK. +<2025-12-24 05:21:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@427fc3fa] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3c3938d5] on IDLE CHECK. +<2025-12-24 05:21:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3c68ed60] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2bddf058] on IDLE CHECK. +<2025-12-24 05:21:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@264f675d] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7524da2d] on IDLE CHECK. +<2025-12-24 05:21:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3c3938d5] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2e70c244] on IDLE CHECK. +<2025-12-24 05:21:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2bddf058] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@ea15e31] on IDLE CHECK. +<2025-12-24 05:21:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2e70c244] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7524da2d] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@ea15e31] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,247> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:21:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:40,247> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:40,247> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6c63f08a] on IDLE CHECK. +<2025-12-24 05:21:40,248> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6daf2129] on IDLE CHECK. +<2025-12-24 05:21:40,248> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60c400e3] on IDLE CHECK. +<2025-12-24 05:21:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6c63f08a] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@21553e64] on IDLE CHECK. +<2025-12-24 05:21:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6daf2129] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4720156] on IDLE CHECK. +<2025-12-24 05:21:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60c400e3] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1305d1a9] on IDLE CHECK. +<2025-12-24 05:21:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@21553e64] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@73d9c989] on IDLE CHECK. +<2025-12-24 05:21:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1305d1a9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1078e044] on IDLE CHECK. +<2025-12-24 05:21:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4720156] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2ff5897b] on IDLE CHECK. +<2025-12-24 05:21:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@73d9c989] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3a32691b] on IDLE CHECK. +<2025-12-24 05:21:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1078e044] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2ff5897b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3a32691b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:21:51,867> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:21:51 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,867> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21553e64 ---> idle_time: 81212; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21553e64 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4720156 ---> idle_time: 81222; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4720156 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4720156 +<2025-12-24 05:21:51,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4720156 +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1305d1a9 ---> idle_time: 81222; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1305d1a9 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1305d1a9 +<2025-12-24 05:21:51,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1305d1a9 +<2025-12-24 05:21:51,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21553e64 +<2025-12-24 05:21:51,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@21553e64 +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@73d9c989 ---> idle_time: 81226; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@73d9c989 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1078e044 ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1078e044 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2ff5897b ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2ff5897b [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3a32691b ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3a32691b [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:21:51,868> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:21:51,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@4720156 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4720156 +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4720156 +<2025-12-24 05:21:51,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1305d1a9 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1305d1a9 +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1305d1a9 +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1078e044 +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1078e044 +<2025-12-24 05:21:51,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@21553e64 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@21553e64 +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21553e64 +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2ff5897b +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2ff5897b +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@73d9c989 +<2025-12-24 05:21:51,869> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@73d9c989 +<2025-12-24 05:21:51,870> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1078e044 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:51,870> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@73d9c989 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:51,870> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@73d9c989 +<2025-12-24 05:21:51,870> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@73d9c989 +<2025-12-24 05:21:51,870> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3a32691b +<2025-12-24 05:21:51,870> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3a32691b +<2025-12-24 05:21:51,870> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2ff5897b closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:51,871> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2ff5897b +<2025-12-24 05:21:51,871> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2ff5897b +<2025-12-24 05:21:51,870> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1078e044 +<2025-12-24 05:21:51,871> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1078e044 +<2025-12-24 05:21:51,871> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3a32691b closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:51,871> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3a32691b +<2025-12-24 05:21:51,871> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3a32691b +<2025-12-24 05:21:51,884> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:21:51,884> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:21:51,884> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,884> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,884> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:21:51,884> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:21:51,884> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,884> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:21:51,884> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:21:51,889> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:21:51,889> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,889> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:21:51,889> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:21:51,889> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,889> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:21:51,889> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:21:51,889> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,889> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:21:51,892> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:21:51,892> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:21:51,892> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:21:52 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c68ed60 ---> idle_time: 81225; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c68ed60 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@40b8fde1 ---> idle_time: 81232; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@40b8fde1 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c68ed60 +<2025-12-24 05:21:52,058> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3c68ed60 +<2025-12-24 05:21:52,058> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@40b8fde1 +<2025-12-24 05:21:52,058> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@40b8fde1 +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3763bbfa ---> idle_time: 81232; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3763bbfa [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3763bbfa +<2025-12-24 05:21:52,058> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3763bbfa +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@427fc3fa ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@427fc3fa [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@264f675d ---> idle_time: 81238; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@264f675d [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c3938d5 ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c3938d5 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2bddf058 ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2bddf058 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,058> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,059> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,059> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7524da2d ---> idle_time: 81243; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,059> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7524da2d [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,059> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,059> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,059> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2e70c244 ---> idle_time: 81244; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3c68ed60 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3c68ed60 +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c68ed60 +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@427fc3fa +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@427fc3fa +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3763bbfa closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3763bbfa +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3763bbfa +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@264f675d +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@264f675d +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@40b8fde1 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:52,059> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2e70c244 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@264f675d closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@264f675d +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@264f675d +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@40b8fde1 +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@40b8fde1 +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2bddf058 +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2bddf058 +<2025-12-24 05:21:52,059> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@427fc3fa closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@427fc3fa +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@427fc3fa +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7524da2d +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7524da2d +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c3938d5 +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@ea15e31 ---> idle_time: 81247; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@ea15e31 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3c3938d5 +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 8 +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 9 +<2025-12-24 05:21:52,060> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 10 +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3c3938d5 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3c3938d5 +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c3938d5 +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2e70c244 +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2bddf058 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2bddf058 +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2bddf058 +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@ea15e31 +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@ea15e31 +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2e70c244 +<2025-12-24 05:21:52,060> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7524da2d closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7524da2d +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7524da2d +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@ea15e31 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@ea15e31 +<2025-12-24 05:21:52,061> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@ea15e31 +<2025-12-24 05:21:52,062> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2e70c244 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:21:52,063> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2e70c244 +<2025-12-24 05:21:52,063> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2e70c244 +<2025-12-24 05:21:52,066> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:21:52,066> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,066> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 9 +<2025-12-24 05:21:52,067> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:21:52,067> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,067> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 8 +<2025-12-24 05:21:52,067> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:21:52,067> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,067> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 7 +<2025-12-24 05:21:52,070> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:21:52,070> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,070> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:21:52,070> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:21:52,070> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,070> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:21:52,070> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:21:52,070> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,070> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:21:52,073> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:21:52,073> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,073> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:21:52,073> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:21:52,073> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,073> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:21:52,073> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:21:52,073> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,073> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:21:52,075> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:21:52,075> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:21:52,075> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:22:08,118> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:22:08 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:08,118> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:08,118> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:08,309> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:22:08 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:08,309> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:08,309> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:24,369> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:22:24 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6c63f08a ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6c63f08a [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6daf2129 ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6daf2129 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60c400e3 ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60c400e3 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:22:24,370> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6c63f08a +<2025-12-24 05:22:24,370> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60c400e3 +<2025-12-24 05:22:24,370> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6c63f08a +<2025-12-24 05:22:24,370> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@60c400e3 +<2025-12-24 05:22:24,370> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6daf2129 +<2025-12-24 05:22:24,370> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6daf2129 +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:22:24,370> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:22:24,371> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6daf2129 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:22:24,372> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6daf2129 +<2025-12-24 05:22:24,372> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6daf2129 +<2025-12-24 05:22:24,371> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6c63f08a closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:22:24,372> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6c63f08a +<2025-12-24 05:22:24,372> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6c63f08a +<2025-12-24 05:22:24,371> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@60c400e3 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:22:24,372> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@60c400e3 +<2025-12-24 05:22:24,372> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60c400e3 +<2025-12-24 05:22:24,379> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:22:24,379> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:22:24,379> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:22:24,379> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:22:24,379> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:22:24,379> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:22:24,379> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:22:24,379> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:22:24,379> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:22:24,560> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:22:24 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:24,560> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:24,560> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:40,190> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:22:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:40,191> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:22:40,191> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@174cf1d6] on IDLE CHECK. +<2025-12-24 05:22:40,191> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@22e97a97] on IDLE CHECK. +<2025-12-24 05:22:40,191> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@24cf565d] on IDLE CHECK. +<2025-12-24 05:22:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@22e97a97] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@174cf1d6] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@63e719b0] on IDLE CHECK. +<2025-12-24 05:22:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@22e098b7] on IDLE CHECK. +<2025-12-24 05:22:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@24cf565d] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3ddaf768] on IDLE CHECK. +<2025-12-24 05:22:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@22e098b7] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@18b6a074] on IDLE CHECK. +<2025-12-24 05:22:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@18b6a074] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7b959687] on IDLE CHECK. +<2025-12-24 05:22:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3ddaf768] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5346e73f] on IDLE CHECK. +<2025-12-24 05:22:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@63e719b0] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@337743c8] on IDLE CHECK. +<2025-12-24 05:22:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5346e73f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7b959687] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@337743c8] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,248> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:22:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:40,248> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@22cf32d9] on IDLE CHECK. +<2025-12-24 05:22:40,248> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:22:40,248> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@240d517c] on IDLE CHECK. +<2025-12-24 05:22:40,248> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@49fb66a2] on IDLE CHECK. +<2025-12-24 05:22:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@22cf32d9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3b636377] on IDLE CHECK. +<2025-12-24 05:22:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@240d517c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,249> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3129bd91] on IDLE CHECK. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@49fb66a2] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@23c96f5f] on IDLE CHECK. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3129bd91] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3c0fff67] on IDLE CHECK. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@23c96f5f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3b636377] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1017f6d3] on IDLE CHECK. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6701d582] on IDLE CHECK. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3c0fff67] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@72a3b19c] on IDLE CHECK. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6701d582] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1017f6d3] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@72a3b19c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:22:40,620> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:22:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:40,620> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:40,620> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:40,811> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:22:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:40,811> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:40,811> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:56,871> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:22:56 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:56,871> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:56,871> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:22:57,062> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:22:57 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:57,062> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:22:57,062> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,124> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:23:13 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,125> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,125> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b636377 ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,125> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b636377 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3129bd91 ---> idle_time: 81237; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3129bd91 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23c96f5f ---> idle_time: 81237; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23c96f5f [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b636377 +<2025-12-24 05:23:13,126> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23c96f5f +<2025-12-24 05:23:13,126> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@23c96f5f +<2025-12-24 05:23:13,126> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3129bd91 +<2025-12-24 05:23:13,126> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3129bd91 +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3b636377 +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c0fff67 ---> idle_time: 81237; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c0fff67 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1017f6d3 ---> idle_time: 81242; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1017f6d3 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6701d582 ---> idle_time: 81242; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6701d582 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@72a3b19c ---> idle_time: 81242; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@72a3b19c [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,126> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,129> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,129> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:13,129> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:23:13,129> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:23:13,129> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:23:13,129> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:23:13,129> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:23:13,129> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:23:13,129> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:23:13,129> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3129bd91 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,130> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3129bd91 +<2025-12-24 05:23:13,130> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3129bd91 +<2025-12-24 05:23:13,129> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3b636377 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,130> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3b636377 +<2025-12-24 05:23:13,130> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b636377 +<2025-12-24 05:23:13,130> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1017f6d3 +<2025-12-24 05:23:13,130> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1017f6d3 +<2025-12-24 05:23:13,129> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@23c96f5f closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,130> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@23c96f5f +<2025-12-24 05:23:13,130> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23c96f5f +<2025-12-24 05:23:13,130> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6701d582 +<2025-12-24 05:23:13,130> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6701d582 +<2025-12-24 05:23:13,130> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c0fff67 +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3c0fff67 +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1017f6d3 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1017f6d3 +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1017f6d3 +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@72a3b19c +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@72a3b19c +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6701d582 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6701d582 +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6701d582 +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@72a3b19c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@72a3b19c +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@72a3b19c +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3c0fff67 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3c0fff67 +<2025-12-24 05:23:13,131> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3c0fff67 +<2025-12-24 05:23:13,148> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:23:13,149> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,149> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:23:13,149> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:23:13,149> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,149> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:23:13,149> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:23:13,149> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,149> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:23:13,154> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:23:13,154> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,154> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:23:13,154> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:23:13,154> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,154> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:23:13,155> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:23:13,155> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,155> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:23:13,157> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:23:13,157> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:13,157> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:23:13,312> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:23:13 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,312> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@174cf1d6 ---> idle_time: 81238; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@174cf1d6 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22e97a97 ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22e97a97 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24cf565d ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24cf565d [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,313> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@174cf1d6 +<2025-12-24 05:23:13,313> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22e97a97 +<2025-12-24 05:23:13,313> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@174cf1d6 +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,313> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24cf565d +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22e098b7 ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22e098b7 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,313> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@22e97a97 +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,313> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@24cf565d +<2025-12-24 05:23:13,313> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@174cf1d6 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@174cf1d6 +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@22e97a97 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@24cf565d closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@24cf565d +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24cf565d +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22e098b7 +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@22e098b7 +<2025-12-24 05:23:13,313> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@63e719b0 ---> idle_time: 81243; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,314> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@63e719b0 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,314> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@22e97a97 +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@22e098b7 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@22e098b7 +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22e098b7 +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@174cf1d6 +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@63e719b0 +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@63e719b0 +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22e97a97 +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@63e719b0 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@63e719b0 +<2025-12-24 05:23:13,314> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@63e719b0 +<2025-12-24 05:23:13,314> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,314> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3ddaf768 ---> idle_time: 81244; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,314> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3ddaf768 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,314> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,314> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,314> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@18b6a074 ---> idle_time: 81244; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,314> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@18b6a074 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,314> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,314> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7b959687 ---> idle_time: 81248; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7b959687 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5346e73f ---> idle_time: 81248; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5346e73f [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3ddaf768 +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3ddaf768 +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@18b6a074 +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@18b6a074 +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7b959687 +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7b959687 +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@337743c8 ---> idle_time: 81249; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@337743c8 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 8 +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 9 +<2025-12-24 05:23:13,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 10 +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3ddaf768 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3ddaf768 +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3ddaf768 +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5346e73f +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5346e73f +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7b959687 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7b959687 +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7b959687 +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@337743c8 +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@337743c8 +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@5346e73f closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5346e73f +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5346e73f +<2025-12-24 05:23:13,315> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@18b6a074 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,316> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@18b6a074 +<2025-12-24 05:23:13,316> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@18b6a074 +<2025-12-24 05:23:13,316> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@337743c8 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:13,316> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@337743c8 +<2025-12-24 05:23:13,316> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@337743c8 +<2025-12-24 05:23:13,321> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:23:13,321> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,321> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 9 +<2025-12-24 05:23:13,324> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:23:13,324> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,324> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 8 +<2025-12-24 05:23:13,330> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:23:13,330> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,330> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 7 +<2025-12-24 05:23:13,339> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:23:13,339> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,339> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:23:13,343> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:23:13,343> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,343> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:23:13,421> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:23:13,422> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,422> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:23:13,423> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:23:13,423> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,423> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:23:13,424> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:23:13,424> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,424> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:23:13,426> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:23:13,426> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,426> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:23:13,427> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:23:13,427> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:13,427> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:23:29,374> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:23:29 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:29,374> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:29,375> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:29,563> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:23:29 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:29,563> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:29,563> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:40,192> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:23:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:40,193> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:23:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@8f44b6] on IDLE CHECK. +<2025-12-24 05:23:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2a483ef1] on IDLE CHECK. +<2025-12-24 05:23:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2d497e57] on IDLE CHECK. +<2025-12-24 05:23:40,211> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@8f44b6] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,211> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2d497e57] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,211> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@612edb3c] on IDLE CHECK. +<2025-12-24 05:23:40,211> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1859177] on IDLE CHECK. +<2025-12-24 05:23:40,211> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2a483ef1] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,211> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2cc5cd07] on IDLE CHECK. +<2025-12-24 05:23:40,215> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2cc5cd07] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,215> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@612edb3c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,215> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@776af782] on IDLE CHECK. +<2025-12-24 05:23:40,215> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@46fec8c8] on IDLE CHECK. +<2025-12-24 05:23:40,215> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1859177] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,215> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1135252e] on IDLE CHECK. +<2025-12-24 05:23:40,218> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1135252e] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,218> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7c370e07] on IDLE CHECK. +<2025-12-24 05:23:40,219> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@46fec8c8] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,219> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@776af782] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,220> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7c370e07] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,250> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:23:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:40,250> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@94440b6] on IDLE CHECK. +<2025-12-24 05:23:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2292f7ba] on IDLE CHECK. +<2025-12-24 05:23:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@305b3ecd] on IDLE CHECK. +<2025-12-24 05:23:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@94440b6] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2292f7ba] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5f522427] on IDLE CHECK. +<2025-12-24 05:23:40,250> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6e72b2f2] on IDLE CHECK. +<2025-12-24 05:23:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@305b3ecd] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@66840670] on IDLE CHECK. +<2025-12-24 05:23:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5f522427] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@530175af] on IDLE CHECK. +<2025-12-24 05:23:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6e72b2f2] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@22cf32d9] on IDLE CHECK. +<2025-12-24 05:23:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@22cf32d9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@49fb66a2] on IDLE CHECK. +<2025-12-24 05:23:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@49fb66a2] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@240d517c] on IDLE CHECK. +<2025-12-24 05:23:40,253> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@530175af] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,253> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@66840670] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:40,253> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@240d517c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:23:45,624> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:23:45 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22cf32d9 ---> idle_time: 81246; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22cf32d9 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@49fb66a2 ---> idle_time: 81246; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@49fb66a2 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@240d517c ---> idle_time: 81246; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@240d517c [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:23:45,625> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22cf32d9 +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:23:45,625> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@22cf32d9 +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:23:45,625> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:23:45,625> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@49fb66a2 +<2025-12-24 05:23:45,625> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@49fb66a2 +<2025-12-24 05:23:45,625> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@240d517c +<2025-12-24 05:23:45,625> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@240d517c +<2025-12-24 05:23:45,626> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@22cf32d9 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:45,627> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@22cf32d9 +<2025-12-24 05:23:45,627> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@49fb66a2 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:45,627> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@49fb66a2 +<2025-12-24 05:23:45,627> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@49fb66a2 +<2025-12-24 05:23:45,626> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@240d517c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:23:45,628> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@240d517c +<2025-12-24 05:23:45,628> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@240d517c +<2025-12-24 05:23:45,627> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@22cf32d9 +<2025-12-24 05:23:45,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:23:45,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:23:45,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:23:45,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:45,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:45,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:23:45,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:23:45,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:23:45,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:23:45,813> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:23:45 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:45,813> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:23:45,813> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:01,874> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:24:01 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:01,874> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:01,874> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:02,064> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:24:02 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:02,064> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:02,064> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:18,127> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:24:18 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:18,127> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:18,127> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:18,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:24:18 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:18,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:18,315> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,379> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:24:34 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,379> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,379> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@94440b6 ---> idle_time: 81222; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,379> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@94440b6 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,379> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,380> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@94440b6 +<2025-12-24 05:24:34,380> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@94440b6 +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2292f7ba ---> idle_time: 81225; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2292f7ba [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,380> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2292f7ba +<2025-12-24 05:24:34,380> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2292f7ba +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@305b3ecd ---> idle_time: 81226; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@305b3ecd [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5f522427 ---> idle_time: 81226; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5f522427 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6e72b2f2 ---> idle_time: 81231; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6e72b2f2 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,380> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@305b3ecd +<2025-12-24 05:24:34,380> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@305b3ecd +<2025-12-24 05:24:34,380> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@94440b6 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,380> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,382> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@305b3ecd closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@305b3ecd +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@305b3ecd +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5f522427 +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5f522427 +<2025-12-24 05:24:34,382> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@94440b6 +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@94440b6 +<2025-12-24 05:24:34,382> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2292f7ba closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2292f7ba +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2292f7ba +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@5f522427 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5f522427 +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5f522427 +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6e72b2f2 +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6e72b2f2 +<2025-12-24 05:24:34,382> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@66840670 ---> idle_time: 81234; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@66840670 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@530175af ---> idle_time: 81235; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@530175af [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:24:34,383> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:24:34,383> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@66840670 +<2025-12-24 05:24:34,384> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@66840670 +<2025-12-24 05:24:34,384> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@530175af +<2025-12-24 05:24:34,384> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@530175af +<2025-12-24 05:24:34,384> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6e72b2f2 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,384> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6e72b2f2 +<2025-12-24 05:24:34,384> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6e72b2f2 +<2025-12-24 05:24:34,388> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@66840670 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,388> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@66840670 +<2025-12-24 05:24:34,388> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@66840670 +<2025-12-24 05:24:34,389> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@530175af closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,389> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@530175af +<2025-12-24 05:24:34,389> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@530175af +<2025-12-24 05:24:34,408> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:24:34,408> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:24:34,408> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,408> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:24:34,408> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,408> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:24:34,408> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,408> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:24:34,408> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:24:34,413> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:24:34,413> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,413> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:24:34,414> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:24:34,414> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,414> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:24:34,414> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:24:34,415> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,415> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:24:34,418> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:24:34,418> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:34,418> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:24:34 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8f44b6 ---> idle_time: 81139; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8f44b6 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2a483ef1 ---> idle_time: 81140; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2a483ef1 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,566> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8f44b6 +<2025-12-24 05:24:34,566> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@8f44b6 +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,566> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2a483ef1 +<2025-12-24 05:24:34,566> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2a483ef1 +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2d497e57 ---> idle_time: 81142; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2d497e57 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@612edb3c ---> idle_time: 81143; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@612edb3c [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,566> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2d497e57 +<2025-12-24 05:24:34,566> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2d497e57 +<2025-12-24 05:24:34,566> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@8f44b6 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2d497e57 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2d497e57 +<2025-12-24 05:24:34,566> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1859177 ---> idle_time: 81145; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1859177 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2cc5cd07 ---> idle_time: 81224; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2cc5cd07 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@46fec8c8 ---> idle_time: 81228; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@46fec8c8 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@776af782 ---> idle_time: 81237; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@776af782 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1135252e ---> idle_time: 81243; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1135252e [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2d497e57 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@612edb3c +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@612edb3c +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@8f44b6 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8f44b6 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1859177 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1859177 +<2025-12-24 05:24:34,566> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2a483ef1 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2a483ef1 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2a483ef1 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2cc5cd07 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2cc5cd07 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1859177 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1859177 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1859177 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@46fec8c8 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@46fec8c8 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@612edb3c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@612edb3c +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@612edb3c +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@46fec8c8 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@46fec8c8 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@46fec8c8 +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7c370e07 ---> idle_time: 81246; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7c370e07 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1135252e +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1135252e +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@776af782 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@776af782 +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1135252e closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1135252e +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1135252e +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7c370e07 +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7c370e07 +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@776af782 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@776af782 +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@776af782 +<2025-12-24 05:24:34,567> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2cc5cd07 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2cc5cd07 +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2cc5cd07 +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7c370e07 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7c370e07 +<2025-12-24 05:24:34,568> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7c370e07 +<2025-12-24 05:24:34,567> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:24:34,568> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:24:34,568> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:24:34,568> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:24:34,568> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:24:34,568> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:24:34,568> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:24:34,568> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 8 +<2025-12-24 05:24:34,568> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 9 +<2025-12-24 05:24:34,568> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 10 +<2025-12-24 05:24:34,576> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:24:34,576> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,576> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 9 +<2025-12-24 05:24:34,578> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:24:34,578> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,578> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 8 +<2025-12-24 05:24:34,579> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:24:34,579> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,579> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 7 +<2025-12-24 05:24:34,582> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:24:34,582> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,582> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:24:34,582> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:24:34,582> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,582> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:24:34,583> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:24:34,583> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,583> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:24:34,585> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:24:34,585> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,585> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:24:34,586> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:24:34,586> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,586> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:24:34,587> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:24:34,587> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,587> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:24:34,589> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:24:34,589> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:34,589> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:24:40,193> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:24:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:40,193> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:24:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@20d649f9] on IDLE CHECK. +<2025-12-24 05:24:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@53260d9b] on IDLE CHECK. +<2025-12-24 05:24:40,193> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2cf538b2] on IDLE CHECK. +<2025-12-24 05:24:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@53260d9b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2cf538b2] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@24891efd] on IDLE CHECK. +<2025-12-24 05:24:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@732998d7] on IDLE CHECK. +<2025-12-24 05:24:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@20d649f9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@53ed8010] on IDLE CHECK. +<2025-12-24 05:24:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@24891efd] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@779140ce] on IDLE CHECK. +<2025-12-24 05:24:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@732998d7] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7dabff6] on IDLE CHECK. +<2025-12-24 05:24:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@53ed8010] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@74fd072a] on IDLE CHECK. +<2025-12-24 05:24:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7dabff6] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@f11c331] on IDLE CHECK. +<2025-12-24 05:24:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@779140ce] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@74fd072a] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@f11c331] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,251> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:24:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:40,252> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:24:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@8b2aefd] on IDLE CHECK. +<2025-12-24 05:24:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@78721bdc] on IDLE CHECK. +<2025-12-24 05:24:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1699426a] on IDLE CHECK. +<2025-12-24 05:24:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1699426a] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3968565e] on IDLE CHECK. +<2025-12-24 05:24:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@78721bdc] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@8b2aefd] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,253> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2e11cff9] on IDLE CHECK. +<2025-12-24 05:24:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4c1cfca9] on IDLE CHECK. +<2025-12-24 05:24:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3968565e] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@135df2c9] on IDLE CHECK. +<2025-12-24 05:24:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2e11cff9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@438fb88a] on IDLE CHECK. +<2025-12-24 05:24:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4c1cfca9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6fbaef15] on IDLE CHECK. +<2025-12-24 05:24:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@438fb88a] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@76d90c96] on IDLE CHECK. +<2025-12-24 05:24:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@135df2c9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6fbaef15] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@76d90c96] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:24:50,632> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:24:50 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:50,633> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:50,634> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:24:50,818> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:24:50 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:50,818> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:24:50,818> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:25:06 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@438fb88a ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@438fb88a [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6fbaef15 ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6fbaef15 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@76d90c96 ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:06,880> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@438fb88a +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@76d90c96 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:25:06,880> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:25:06,880> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@438fb88a +<2025-12-24 05:25:06,880> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6fbaef15 +<2025-12-24 05:25:06,880> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6fbaef15 +<2025-12-24 05:25:06,880> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@76d90c96 +<2025-12-24 05:25:06,881> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@76d90c96 +<2025-12-24 05:25:06,882> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6fbaef15 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:06,882> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6fbaef15 +<2025-12-24 05:25:06,882> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6fbaef15 +<2025-12-24 05:25:06,882> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@76d90c96 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:06,882> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@76d90c96 +<2025-12-24 05:25:06,882> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@76d90c96 +<2025-12-24 05:25:06,882> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@438fb88a closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:06,882> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@438fb88a +<2025-12-24 05:25:06,882> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@438fb88a +<2025-12-24 05:25:06,887> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:25:06,887> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:25:06,887> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:06,887> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:25:06,887> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:06,887> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:25:06,887> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:06,887> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:25:06,887> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:25:07,069> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:25:07 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:07,069> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:07,069> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:23,136> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:25:23 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:23,139> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:23,145> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:23,320> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:25:23 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:23,320> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:23,320> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:39,385> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:25:39 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:39,386> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:39,386> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:39,571> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:25:39 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:39,571> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:39,571> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:40,194> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:25:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:40,195> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@20d649f9] on IDLE CHECK. +<2025-12-24 05:25:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@53260d9b] on IDLE CHECK. +<2025-12-24 05:25:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2cf538b2] on IDLE CHECK. +<2025-12-24 05:25:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2cf538b2] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@24891efd] on IDLE CHECK. +<2025-12-24 05:25:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@20d649f9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@732998d7] on IDLE CHECK. +<2025-12-24 05:25:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@53260d9b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@53ed8010] on IDLE CHECK. +<2025-12-24 05:25:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@24891efd] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@779140ce] on IDLE CHECK. +<2025-12-24 05:25:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@732998d7] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7dabff6] on IDLE CHECK. +<2025-12-24 05:25:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@53ed8010] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@74fd072a] on IDLE CHECK. +<2025-12-24 05:25:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@74fd072a] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@779140ce] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@f11c331] on IDLE CHECK. +<2025-12-24 05:25:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7dabff6] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@f11c331] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,251> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:25:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:40,251> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:40,251> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3abbf623] on IDLE CHECK. +<2025-12-24 05:25:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@25c4161d] on IDLE CHECK. +<2025-12-24 05:25:40,252> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5a65d561] on IDLE CHECK. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3abbf623] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5a65d561] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@78721bdc] on IDLE CHECK. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@8b2aefd] on IDLE CHECK. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@25c4161d] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1699426a] on IDLE CHECK. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@8b2aefd] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3968565e] on IDLE CHECK. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@78721bdc] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4c1cfca9] on IDLE CHECK. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1699426a] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2e11cff9] on IDLE CHECK. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3968565e] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@135df2c9] on IDLE CHECK. +<2025-12-24 05:25:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4c1cfca9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2e11cff9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@135df2c9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:25:55,637> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:25:55 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8b2aefd ---> idle_time: 81220; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8b2aefd [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@78721bdc ---> idle_time: 81223; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@78721bdc [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1699426a ---> idle_time: 81224; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1699426a [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3968565e ---> idle_time: 81225; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3968565e [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,638> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8b2aefd +<2025-12-24 05:25:55,638> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@8b2aefd +<2025-12-24 05:25:55,638> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1699426a +<2025-12-24 05:25:55,638> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1699426a +<2025-12-24 05:25:55,638> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,639> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,638> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@78721bdc +<2025-12-24 05:25:55,639> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@78721bdc +<2025-12-24 05:25:55,639> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c1cfca9 ---> idle_time: 81231; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,639> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c1cfca9 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,639> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,639> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,639> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2e11cff9 ---> idle_time: 81231; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2e11cff9 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@135df2c9 ---> idle_time: 81232; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@135df2c9 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:25:55,640> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:25:55,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@8b2aefd closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@8b2aefd +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8b2aefd +<2025-12-24 05:25:55,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1699426a closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1699426a +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1699426a +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c1cfca9 +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4c1cfca9 +<2025-12-24 05:25:55,640> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@78721bdc closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@78721bdc +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@78721bdc +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@4c1cfca9 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4c1cfca9 +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c1cfca9 +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@135df2c9 +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@135df2c9 +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3968565e +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3968565e +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2e11cff9 +<2025-12-24 05:25:55,641> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2e11cff9 +<2025-12-24 05:25:55,642> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@135df2c9 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,642> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@135df2c9 +<2025-12-24 05:25:55,642> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@135df2c9 +<2025-12-24 05:25:55,642> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2e11cff9 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,642> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3968565e closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,642> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3968565e +<2025-12-24 05:25:55,642> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3968565e +<2025-12-24 05:25:55,642> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2e11cff9 +<2025-12-24 05:25:55,643> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2e11cff9 +<2025-12-24 05:25:55,665> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:25:55,665> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:25:55,666> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:25:55,666> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,666> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,666> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:25:55,666> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,666> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:25:55,666> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:25:55,679> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:25:55,679> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,679> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:25:55,679> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:25:55,679> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,679> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:25:55,720> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:25:55,721> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,721> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:25:55,721> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:25:55,721> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:25:55,721> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:25:55 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@20d649f9 ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@20d649f9 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@53260d9b ---> idle_time: 81235; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@53260d9b [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,822> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@20d649f9 +<2025-12-24 05:25:55,822> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@20d649f9 +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2cf538b2 ---> idle_time: 81236; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2cf538b2 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24891efd ---> idle_time: 81237; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24891efd [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@732998d7 ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@732998d7 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,822> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@53260d9b +<2025-12-24 05:25:55,822> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@53260d9b +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,822> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@53ed8010 ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@53ed8010 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@779140ce ---> idle_time: 81241; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@779140ce [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,822> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2cf538b2 +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2cf538b2 +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@20d649f9 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@20d649f9 +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@20d649f9 +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24891efd +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@24891efd +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7dabff6 ---> idle_time: 81244; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7dabff6 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@74fd072a ---> idle_time: 81245; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@74fd072a [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2cf538b2 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2cf538b2 +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2cf538b2 +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@732998d7 +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@732998d7 +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@53260d9b closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@53260d9b +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@53260d9b +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@53ed8010 +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@53ed8010 +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@f11c331 ---> idle_time: 81247; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@f11c331 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:25:55,823> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@24891efd closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@24891efd +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24891efd +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@779140ce +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@779140ce +<2025-12-24 05:25:55,824> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:25:55,824> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:25:55,824> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:25:55,824> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:25:55,824> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:25:55,824> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 8 +<2025-12-24 05:25:55,824> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 9 +<2025-12-24 05:25:55,824> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 10 +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@53ed8010 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@53ed8010 +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@53ed8010 +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7dabff6 +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7dabff6 +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@779140ce closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@779140ce +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@779140ce +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@74fd072a +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@74fd072a +<2025-12-24 05:25:55,823> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@732998d7 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@732998d7 +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@732998d7 +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@f11c331 +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@f11c331 +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@74fd072a closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@74fd072a +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@74fd072a +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7dabff6 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7dabff6 +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7dabff6 +<2025-12-24 05:25:55,824> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@f11c331 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:25:55,825> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@f11c331 +<2025-12-24 05:25:55,825> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@f11c331 +<2025-12-24 05:25:55,827> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:25:55,827> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,827> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 9 +<2025-12-24 05:25:55,827> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:25:55,827> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,827> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 8 +<2025-12-24 05:25:55,827> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:25:55,827> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,827> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 7 +<2025-12-24 05:25:55,829> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:25:55,829> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,829> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:25:55,830> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:25:55,830> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,830> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:25:55,830> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:25:55,830> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,830> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:25:55,832> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:25:55,832> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,832> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:25:55,832> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:25:55,832> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,832> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:25:55,832> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:25:55,832> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,832> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:25:55,833> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:25:55,834> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:25:55,834> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:26:11,887> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:26:11 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3abbf623 ---> idle_time: 65001; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3abbf623 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@25c4161d ---> idle_time: 65001; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@25c4161d [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:11,888> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3abbf623 +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5a65d561 ---> idle_time: 65001; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5a65d561 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:11,888> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3abbf623 +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:26:11,888> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@25c4161d +<2025-12-24 05:26:11,888> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@25c4161d +<2025-12-24 05:26:11,888> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5a65d561 +<2025-12-24 05:26:11,888> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5a65d561 +<2025-12-24 05:26:11,888> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:26:11,890> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3abbf623 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:26:11,891> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3abbf623 +<2025-12-24 05:26:11,891> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3abbf623 +<2025-12-24 05:26:11,891> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@25c4161d closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:26:11,892> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@25c4161d +<2025-12-24 05:26:11,892> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@25c4161d +<2025-12-24 05:26:11,890> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@5a65d561 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:26:11,892> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5a65d561 +<2025-12-24 05:26:11,892> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5a65d561 +<2025-12-24 05:26:11,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:26:11,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:26:11,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:26:11,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:26:11,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:26:11,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:26:11,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:26:11,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:26:11,904> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:26:12,073> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:26:12 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:26:12,073> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:26:12,073> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:26:20,939> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:20,939> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:20,939> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:20,939> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:20,939> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:20,939> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:20,939> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:20,939> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:20,939> DEBUG [http-8080-1](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:20,939> DEBUG [http-8080-1](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:20,939> DEBUG [http-8080-1](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:20,940> DEBUG [http-8080-1](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:20,940> DEBUG [http-8080-1](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5d3daii","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:20,940> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5d3daih","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:20,940> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5d3daig","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:20,941> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:20,941> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:20,941> DEBUG [http-8080-1](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:20,941> DEBUG [http-8080-1](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:20,941> DEBUG [http-8080-1](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:20,941> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:20,941> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:26:20,941> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:20,941> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:20,941> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:20,941> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:20,941> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:20,941> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:20,941> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:20,941> DEBUG [http-8080-1](SOKRATI) - Request Authorized +<2025-12-24 05:26:20,941> DEBUG [http-8080-1](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:20,941> ERROR [http-8080-1](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:20,941> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:20,941> ERROR [http-8080-1](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:20,941> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:20,942> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:20,941> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:20,942> ERROR [http-8080-1](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:20,942> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:20,968> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:20,968> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:20,968> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:20,968> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:20,968> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5d3f5n7","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:20,969> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:20,969> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:20,969> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:20,969> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:20,969> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:20,969> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:20,969> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:20,969> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:21,037> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:21,037> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:21,037> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:21,037> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:21,037> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5d3gi98","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:21,037> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:21,037> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:21,037> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:21,037> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:21,037> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:21,037> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:21,038> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:21,038> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:21,052> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:21,052> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:21,052> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:21,052> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:21,052> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5d3gxot","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:21,053> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:21,053> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:21,053> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:21,053> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:21,053> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:21,053> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:21,053> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:21,053> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:22,051> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:22,051> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:22,051> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:22,051> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:22,051> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5d42dam","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:22,051> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:22,051> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:22,051> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:22,051> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:22,051> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:22,051> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:22,051> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:22,051> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:23,061> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:23,061> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:23,061> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:23,061> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:23,062> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5d4nxj3","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:23,064> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:23,065> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:23,065> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:23,065> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:23,065> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:23,065> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:23,065> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:23,065> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:24,048> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:24,048> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:24,048> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:24,048> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:24,048> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5d596yo","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:24,048> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:24,048> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:24,048> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:24,048> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:24,048> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:24,048> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:24,049> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:24,049> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:25,051> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:25,051> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:25,051> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:25,051> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:25,051> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5d5unc9","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:25,052> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:25,052> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:25,052> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:25,052> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:25,052> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:25,052> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:25,052> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:25,052> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:26,055> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:26,055> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:26,055> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:26,055> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:26,055> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhnshvyy","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:26,058> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:26,058> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:26,058> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:26,058> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:26,058> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:26,058> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:26,058> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:26,059> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:27,060> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:27,060> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:27,060> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:27,060> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:27,060> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhnygfqj","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:27,061> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:27,061> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:27,061> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:27,061> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:27,061> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:27,061> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:27,061> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:27,062> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:28,060> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:28,060> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:28,060> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:28,060> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:28,060> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jho4f77w","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:28,060> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:28,060> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:28,060> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:28,060> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:28,060> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:28,060> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:28,060> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:28,060> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:28,137> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:26:28 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:28,137> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:28,137> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:28,325> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:26:28 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:26:28,325> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:26:28,325> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:26:29,051> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:29,051> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:29,051> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:29,051> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:29,051> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhoac8z1","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:29,052> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:29,052> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:29,052> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:29,052> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:29,052> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:29,052> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:29,053> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:29,053> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:30,050> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:30,051> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:30,051> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:30,051> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:30,051> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhogadb2","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:30,052> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:30,052> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:30,052> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:30,052> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:30,052> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:30,052> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:30,052> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:30,052> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:31,073> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:31,073> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:31,073> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:31,073> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:31,073> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhomczof","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:31,074> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:31,074> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:31,074> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:31,074> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:31,074> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:31,074> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:31,074> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:31,075> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:32,054> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:32,054> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:32,054> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:32,054> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:32,054> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhos7w9s","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:32,055> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:32,055> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:32,055> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:32,055> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:32,055> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:32,055> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:32,055> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:32,055> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:33,058> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:33,058> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:33,058> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:33,058> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:33,058> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhoy5sw1","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:33,059> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:33,059> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:33,059> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:33,059> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:33,059> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:33,059> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:33,059> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:33,060> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:34,052> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:34,053> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:34,053> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:34,053> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:34,053> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhp444xu","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:34,054> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:34,054> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:34,054> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:34,054> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:34,054> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:34,054> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:34,054> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:34,054> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:35,050> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:35,050> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:35,050> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:35,050> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:35,050> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhpa1tub","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:35,051> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:35,051> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:35,051> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:35,051> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:35,051> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:35,051> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:35,051> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:35,051> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:36,052> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:36,052> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:36,052> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:36,052> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:36,052> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhpg0lbo","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:36,053> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:36,053> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:36,053> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:36,053> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:36,053> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:36,053> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:36,053> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:36,053> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:37,055> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:37,055> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:37,055> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:37,055> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:37,055> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhplz539","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:37,057> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:37,057> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:37,057> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:37,057> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:37,057> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:37,057> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:37,058> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:37,058> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:38,052> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:38,052> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:38,052> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:38,052> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:38,052> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhprx9fa","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:38,053> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:38,053> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:38,053> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:38,053> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:38,053> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:38,053> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:38,053> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:38,054> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:39,048> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:39,048> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:39,048> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:39,048> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:39,048> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhpxv61j","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:39,049> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:39,049> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:39,049> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:39,049> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:39,049> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:39,049> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:39,049> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:39,049> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:40,051> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:40,051> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:40,051> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:40,051> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:40,051> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhq3ti3c","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:40,052> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:40,052> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:40,052> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:40,052> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:40,052> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:40,052> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:40,052> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:40,052> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:40,194> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:26:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:26:40,195> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:26:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6f61413b] on IDLE CHECK. +<2025-12-24 05:26:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7bfd8d2a] on IDLE CHECK. +<2025-12-24 05:26:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@393fe7ad] on IDLE CHECK. +<2025-12-24 05:26:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@393fe7ad] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@aebd874] on IDLE CHECK. +<2025-12-24 05:26:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7bfd8d2a] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@121eb9e] on IDLE CHECK. +<2025-12-24 05:26:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6f61413b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@46a95771] on IDLE CHECK. +<2025-12-24 05:26:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@aebd874] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@121eb9e] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@300ed8ef] on IDLE CHECK. +<2025-12-24 05:26:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@24cb3651] on IDLE CHECK. +<2025-12-24 05:26:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@46a95771] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7415e994] on IDLE CHECK. +<2025-12-24 05:26:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@300ed8ef] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@44ae7279] on IDLE CHECK. +<2025-12-24 05:26:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@24cb3651] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7415e994] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@44ae7279] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,253> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:26:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:40,253> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:26:40,253> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@195c1469] on IDLE CHECK. +<2025-12-24 05:26:40,253> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2aec0246] on IDLE CHECK. +<2025-12-24 05:26:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@8bfa8b5] on IDLE CHECK. +<2025-12-24 05:26:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2aec0246] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@8bfa8b5] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4946c232] on IDLE CHECK. +<2025-12-24 05:26:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2710f65e] on IDLE CHECK. +<2025-12-24 05:26:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@195c1469] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,254> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5ecb788c] on IDLE CHECK. +<2025-12-24 05:26:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5ecb788c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@72e41d] on IDLE CHECK. +<2025-12-24 05:26:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4946c232] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@b108695] on IDLE CHECK. +<2025-12-24 05:26:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2710f65e] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5fe5ea65] on IDLE CHECK. +<2025-12-24 05:26:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5fe5ea65] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@33427482] on IDLE CHECK. +<2025-12-24 05:26:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@72e41d] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@b108695] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@33427482] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:26:41,054> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:41,054> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:41,054> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:41,054> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:41,054> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhq9sp09","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:41,055> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:41,055> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:41,055> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:41,055> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:41,055> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:41,055> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:41,055> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:41,056> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:42,054> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:42,054> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:42,054> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:42,054> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:42,054> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhqfr122","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:42,056> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:42,056> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:42,056> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:42,056> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:42,056> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:42,056> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:42,056> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:42,056> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:43,051> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:43,051> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:43,051> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:43,051> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:43,051> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhqloxob","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:43,053> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:43,053> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:43,053> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:43,053> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:43,053> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:43,053> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:43,053> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:43,053> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:44,053> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:44,054> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:44,054> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:44,054> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:44,054> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhqrn9q4","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:44,055> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:44,055> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:44,055> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:44,055> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:44,055> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:44,055> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:44,055> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:44,055> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:44,387> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:26:44 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:44,387> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:44,387> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:26:44,575> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:26:44 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:26:44,575> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:26:44,576> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:26:45,052> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:45,052> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:45,052> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:45,052> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:45,052> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhqxlthp","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:45,053> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:45,053> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:45,053> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:45,053> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:45,053> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:45,053> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:45,054> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:45,054> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:46,052> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:46,052> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:46,052> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:46,052> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:46,052> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhr3jq3y","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:46,053> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:46,053> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:46,053> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:46,053> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:46,053> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:46,053> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:46,053> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:46,053> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:47,052> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:47,052> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:47,052> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:47,052> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:47,053> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhr9i9vj","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:47,055> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:47,055> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:47,055> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:47,055> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:47,055> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:47,055> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:47,056> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:47,056> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:48,056> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:48,056> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:48,056> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:48,056> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:48,056> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhrfglxc","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:48,057> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:48,057> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:48,057> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:48,057> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:48,057> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:48,057> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:48,057> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:48,057> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:49,057> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:49,057> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:49,057> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:49,057> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:49,057> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhrlfdep","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:49,058> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:49,058> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:49,058> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:49,058> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:49,058> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:49,058> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:49,058> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:49,058> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:50,052> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:50,052> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:50,052> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:50,052> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:50,053> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhrrdhqq","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:50,054> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:50,054> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:50,054> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:50,054> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:50,054> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:50,054> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:50,054> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:50,054> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:51,059> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:51,059> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:51,059> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:51,059> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:51,059> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhrxbm2r","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:51,060> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:51,060> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:51,060> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:51,060> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:51,060> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:51,060> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:51,060> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:51,061> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:53,648> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:53,648> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:53,648> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:53,648> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:53,648> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:53,648> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:53,648> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:53,648> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:53,648> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5dmurlk","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:53,648> DEBUG [http-8080-9](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5dmurll","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:53,649> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:53,649> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:53,649> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:53,649> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:53,649> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:53,649> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:26:53,649> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:53,649> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:53,649> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:26:53,649> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:53,649> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:53,649> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:53,649> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:53,649> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:53,649> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:53,649> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:53,696> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:53,696> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:53,696> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:53,696> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:53,696> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5dmwmqa","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:53,696> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:53,696> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:53,696> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:53,696> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:26:53,696> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:53,696> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:53,696> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:53,697> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:53,986> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:53,986> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:53,986> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:53,986> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:53,986> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5dn2uhv","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:53,987> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:53,987> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:53,987> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:53,987> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:26:53,987> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:53,987> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:53,987> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:53,987> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:53,995> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:53,995> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:53,995> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:53,995> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:53,995> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5dn327o","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:53,996> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:53,996> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:53,996> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:53,996> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:26:53,996> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:53,996> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:53,996> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:53,997> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:54,999> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:54,999> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:54,999> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:54,999> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:54,999> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5dnojd1","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:54,999> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:54,999> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:54,999> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:54,999> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:26:54,999> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:54,999> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:54,999> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:55,000> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:55,998> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:55,998> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:55,998> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:55,998> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:55,998> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5do9zqm","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:55,999> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:55,999> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:55,999> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:55,999> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:26:55,999> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:55,999> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:55,999> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:55,999> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:57,002> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:57,002> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:57,002> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:57,002> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:57,002> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5dovgvz","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:57,005> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:57,005> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:57,005> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:57,005> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:26:57,005> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:57,005> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:57,005> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:57,006> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:58,005> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:58,005> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:58,005> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:58,005> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:58,005> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5dpgy1c","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:58,006> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:58,006> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:58,006> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:58,006> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:26:58,006> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:58,006> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:58,006> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:58,007> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:58,999> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:26:58,999> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:26:58,999> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:26:58,999> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:26:58,999> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"bdo477yfpr5dq2ak1","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:26:58,999> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:26:58,999> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:26:58,999> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:26:58,999> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:26:58,999> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:26:58,999> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:26:58,999> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:26:59,000> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:00,003> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:00,003> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:00,003> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:00,003> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:00,003> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhteloze","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:00,004> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:00,004> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:00,004> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:00,004> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:00,004> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:00,004> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:00,004> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:00,004> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:00,639> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:27:00 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:00,639> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:00,639> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:00,826> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:27:00 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:00,826> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:00,826> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:01,017> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:01,017> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:01,017> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:01,017> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:01,017> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhtkmdwr","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:01,018> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:01,018> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:01,018> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:01,018> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:01,018> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:01,018> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:01,018> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:01,019> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:02,002> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:02,002> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:02,002> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:02,002> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:02,002> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhtqikss","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:02,003> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:02,003> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:02,003> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:02,003> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:02,003> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:02,003> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:02,003> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:02,003> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:02,998> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:02,999> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:02,999> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:02,999> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:02,999> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhtwg9p9","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:03,000> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:03,000> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:03,000> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:03,000> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:03,000> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:03,000> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:03,000> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:03,000> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:04,000> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:04,000> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:04,000> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:04,000> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:04,000> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhu2etgu","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:04,001> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:04,001> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:04,001> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:04,001> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:04,001> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:04,001> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:04,001> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:04,002> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:05,009> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:05,009> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:05,009> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:05,009> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:05,009> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhu8enj3","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:05,011> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:05,012> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:05,012> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:05,012> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:05,012> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:05,012> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:05,012> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:05,013> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:06,004> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:06,004> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:06,004> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:06,004> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:06,004> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhuebx00","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:06,006> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:06,006> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:06,006> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:06,006> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:06,006> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:06,006> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:06,006> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:06,006> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:07,002> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:07,002> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:07,002> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:07,002> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:07,003> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhuk9tm9","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:07,005> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:07,005> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:07,005> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:07,005> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:07,005> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:07,005> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:07,005> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:07,005> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:08,000> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:08,000> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:08,000> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:08,000> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:08,000> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhuq7xya","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:08,001> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:08,001> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:08,001> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:08,001> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:08,001> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:08,001> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:08,001> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:08,002> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:08,996> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:08,996> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:08,996> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:08,996> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:08,996> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhuw5ukj","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:08,997> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:08,997> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:08,997> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:08,997> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:08,997> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:08,997> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:08,997> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:08,997> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:09,999> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:09,999> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:09,999> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:09,999> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:09,999> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhv24m1w","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:10,000> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:10,000> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:10,000> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:10,000> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:10,000> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:10,000> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:10,001> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:10,001> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:11,002> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:11,002> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:11,002> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:11,002> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:11,003> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhv83dj9","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:11,005> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:11,005> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:11,005> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:11,005> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:11,005> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:11,005> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:11,005> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:11,005> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:11,999> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:11,999> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:11,999> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:11,999> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:11,999> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhve1hva","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:12,001> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:12,001> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:12,001> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:12,001> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:12,001> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:12,001> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:12,001> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:12,001> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:13,000> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:13,000> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:13,000> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:13,000> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:13,000> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhvjztx3","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:13,001> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:13,001> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:13,001> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:13,001> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:13,001> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:13,001> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:13,001> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:13,001> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:14,000> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:14,000> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:14,000> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:14,000> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:14,000> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhvpy5yw","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:14,001> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:14,001> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:14,001> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:14,001> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:14,001> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:14,001> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:14,002> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:14,002> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:15,003> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:15,003> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:15,003> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:15,003> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:15,004> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhvvx561","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:15,004> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:15,004> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:15,004> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:15,004> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:15,004> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:15,004> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:15,005> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:15,005> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:16,002> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:16,002> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:16,002> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:16,002> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:16,002> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhw1v1sa","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:16,004> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:16,004> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:16,004> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:16,004> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:16,004> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:16,004> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:16,004> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:16,005> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:16,890> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:27:16 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,890> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,890> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2710f65e ---> idle_time: 81169; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,890> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2710f65e [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4946c232 ---> idle_time: 81170; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4946c232 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5ecb788c ---> idle_time: 81212; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5ecb788c [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,891> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2710f65e +<2025-12-24 05:27:16,891> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2710f65e +<2025-12-24 05:27:16,891> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5ecb788c +<2025-12-24 05:27:16,891> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5ecb788c +<2025-12-24 05:27:16,891> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4946c232 +<2025-12-24 05:27:16,891> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4946c232 +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@72e41d ---> idle_time: 81212; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,891> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@72e41d [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b108695 ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b108695 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5fe5ea65 ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5fe5ea65 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33427482 ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33427482 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:27:16,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:27:16,899> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2710f65e closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:16,902> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2710f65e +<2025-12-24 05:27:16,902> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2710f65e +<2025-12-24 05:27:16,899> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@5ecb788c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:16,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5ecb788c +<2025-12-24 05:27:16,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5ecb788c +<2025-12-24 05:27:16,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b108695 +<2025-12-24 05:27:16,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@b108695 +<2025-12-24 05:27:16,900> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@4946c232 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:16,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4946c232 +<2025-12-24 05:27:16,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4946c232 +<2025-12-24 05:27:16,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5fe5ea65 +<2025-12-24 05:27:16,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5fe5ea65 +<2025-12-24 05:27:16,902> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@72e41d +<2025-12-24 05:27:16,903> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@72e41d +<2025-12-24 05:27:16,905> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@b108695 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:16,905> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@b108695 +<2025-12-24 05:27:16,905> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@b108695 +<2025-12-24 05:27:16,905> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33427482 +<2025-12-24 05:27:16,905> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@33427482 +<2025-12-24 05:27:16,905> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@72e41d closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:16,906> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@72e41d +<2025-12-24 05:27:16,906> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@72e41d +<2025-12-24 05:27:16,906> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@5fe5ea65 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:16,906> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5fe5ea65 +<2025-12-24 05:27:16,906> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5fe5ea65 +<2025-12-24 05:27:16,906> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@33427482 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:16,906> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@33427482 +<2025-12-24 05:27:16,906> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@33427482 +<2025-12-24 05:27:16,935> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:27:16,935> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:27:16,935> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:27:16,935> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,935> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:27:16,935> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,935> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:27:16,935> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,935> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:27:16,942> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:27:16,942> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,942> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:27:16,943> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:27:16,943> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,943> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:27:16,943> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:27:16,943> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:16,943> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:27:16,994> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:16,995> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:16,995> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:16,995> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:16,995> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhw7sb97","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:16,995> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:16,995> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:16,995> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:16,995> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:16,995> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:16,995> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:16,995> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:16,995> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:17,019> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:27:17,019> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:17,019> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:27:17,077> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:27:17 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6f61413b ---> idle_time: 81245; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6f61413b [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7bfd8d2a ---> idle_time: 81246; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7bfd8d2a [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@393fe7ad ---> idle_time: 81246; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@393fe7ad [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6f61413b +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6f61413b +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7bfd8d2a +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@393fe7ad +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@393fe7ad +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@aebd874 ---> idle_time: 81246; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6f61413b closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6f61413b +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6f61413b +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7bfd8d2a +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@393fe7ad closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@393fe7ad +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@393fe7ad +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@aebd874 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7bfd8d2a closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@aebd874 +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@aebd874 +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7bfd8d2a +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7bfd8d2a +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@121eb9e ---> idle_time: 81248; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@121eb9e [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,078> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@aebd874 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@aebd874 +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@aebd874 +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@121eb9e +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@121eb9e +<2025-12-24 05:27:17,078> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@46a95771 ---> idle_time: 81249; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@46a95771 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@121eb9e closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@121eb9e +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@46a95771 +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@46a95771 +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24cb3651 ---> idle_time: 81250; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24cb3651 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@121eb9e +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@46a95771 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@46a95771 +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@46a95771 +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@300ed8ef ---> idle_time: 81252; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@300ed8ef [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24cb3651 +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@24cb3651 +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@300ed8ef +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@300ed8ef +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7415e994 ---> idle_time: 81252; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7415e994 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@44ae7279 ---> idle_time: 81252; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@24cb3651 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@24cb3651 +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24cb3651 +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7415e994 +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7415e994 +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@300ed8ef closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@300ed8ef +<2025-12-24 05:27:17,079> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@300ed8ef +<2025-12-24 05:27:17,079> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@44ae7279 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:27:17,080> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@44ae7279 +<2025-12-24 05:27:17,080> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@44ae7279 +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 8 +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 9 +<2025-12-24 05:27:17,080> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 10 +<2025-12-24 05:27:17,080> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7415e994 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:17,080> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7415e994 +<2025-12-24 05:27:17,080> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7415e994 +<2025-12-24 05:27:17,080> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@44ae7279 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:17,080> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@44ae7279 +<2025-12-24 05:27:17,080> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@44ae7279 +<2025-12-24 05:27:17,093> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:27:17,093> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,093> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 9 +<2025-12-24 05:27:17,096> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:27:17,096> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,096> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 8 +<2025-12-24 05:27:17,098> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:27:17,098> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,098> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 7 +<2025-12-24 05:27:17,099> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:27:17,099> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,099> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:27:17,099> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:27:17,099> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,099> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:27:17,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:27:17,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:27:17,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:27:17,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:27:17,102> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:27:17,102> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,102> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:27:17,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:27:17,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:27:17,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:27:17,120> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:17,120> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:27:17,998> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:17,998> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:17,998> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:17,998> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:17,998> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhwdragc","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:17,999> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:17,999> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:17,999> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:17,999> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:17,999> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:17,999> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:17,999> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:17,999> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:19,000> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:19,000> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:19,000> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:19,000> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:19,001> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhwjq1xp","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:19,002> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:19,002> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:19,002> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:19,002> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:19,002> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:19,002> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:19,002> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:19,002> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:20,000> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:20,000> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:20,000> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:20,000> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:20,000> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhwpnyjy","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:20,001> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:20,001> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:20,001> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:20,001> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:20,001> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:20,001> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:20,001> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:20,002> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:20,996> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:20,996> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:20,996> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:20,996> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:20,996> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhwvlv67","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:20,997> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:20,997> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:20,997> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:20,997> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:20,997> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:20,997> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:20,998> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:20,998> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:22,004> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:22,004> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:22,004> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:22,004> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:22,004> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhx1l234","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:22,005> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:22,005> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:22,005> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:22,005> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:22,005> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:22,005> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:22,005> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:22,005> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:22,999> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:22,999> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:22,999> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:22,999> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:22,999> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhx7iypd","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:23,000> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:23,000> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:23,000> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:23,000> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:23,000> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:23,000> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:23,000> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:23,000> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:23,998> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:27:23,998> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:27:23,998> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:27:23,998> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:27:23,998> DEBUG [http-8080-2](SOKRATI) - Received Request: {"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"token":null,"userId":null,"sokratiRequestId":"35sp607kd5jhxdgvbm","clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:27:23,998> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:27:23,998> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:27:23,998> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:27:23,998> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:27:23,998> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:27:23,998> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:27:23,998> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:23,998> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:27:33,142> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:27:33 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:33,142> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:33,142> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@195c1469 ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:33,142> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@195c1469 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2aec0246 ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2aec0246 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:33,143> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2aec0246 +<2025-12-24 05:27:33,143> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@195c1469 +<2025-12-24 05:27:33,143> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@195c1469 +<2025-12-24 05:27:33,143> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2aec0246 +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8bfa8b5 ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8bfa8b5 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:27:33,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:27:33,143> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8bfa8b5 +<2025-12-24 05:27:33,143> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@8bfa8b5 +<2025-12-24 05:27:33,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@195c1469 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:33,147> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@195c1469 +<2025-12-24 05:27:33,147> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@195c1469 +<2025-12-24 05:27:33,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@8bfa8b5 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:33,147> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@8bfa8b5 +<2025-12-24 05:27:33,147> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@8bfa8b5 +<2025-12-24 05:27:33,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2aec0246 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:27:33,148> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2aec0246 +<2025-12-24 05:27:33,148> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2aec0246 +<2025-12-24 05:27:33,178> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:27:33,178> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:27:33,178> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:33,178> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:33,178> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:27:33,178> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:27:33,179> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:27:33,179> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:33,179> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:27:33,328> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:27:33 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:33,328> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:33,328> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:40,195> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:27:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:40,195> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:27:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5f5786be] on IDLE CHECK. +<2025-12-24 05:27:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60cc17af] on IDLE CHECK. +<2025-12-24 05:27:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@41d47fae] on IDLE CHECK. +<2025-12-24 05:27:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@41d47fae] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@15684504] on IDLE CHECK. +<2025-12-24 05:27:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60cc17af] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@cde62e7] on IDLE CHECK. +<2025-12-24 05:27:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5f5786be] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3dc13c5e] on IDLE CHECK. +<2025-12-24 05:27:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@15684504] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3d61210] on IDLE CHECK. +<2025-12-24 05:27:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@cde62e7] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@23b7f2b3] on IDLE CHECK. +<2025-12-24 05:27:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3dc13c5e] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@a0c31a1] on IDLE CHECK. +<2025-12-24 05:27:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3d61210] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@41c3b600] on IDLE CHECK. +<2025-12-24 05:27:40,201> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@23b7f2b3] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,201> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@a0c31a1] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,201> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@41c3b600] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,254> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:27:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:40,254> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:27:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4904d366] on IDLE CHECK. +<2025-12-24 05:27:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2200be94] on IDLE CHECK. +<2025-12-24 05:27:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2dbfac14] on IDLE CHECK. +<2025-12-24 05:27:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4904d366] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@38b60f68] on IDLE CHECK. +<2025-12-24 05:27:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2200be94] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@45fbf069] on IDLE CHECK. +<2025-12-24 05:27:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2dbfac14] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@323b19eb] on IDLE CHECK. +<2025-12-24 05:27:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@323b19eb] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5063eea4] on IDLE CHECK. +<2025-12-24 05:27:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@45fbf069] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5ac672ee] on IDLE CHECK. +<2025-12-24 05:27:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@38b60f68] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@15e71c3f] on IDLE CHECK. +<2025-12-24 05:27:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5ac672ee] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@313da233] on IDLE CHECK. +<2025-12-24 05:27:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5063eea4] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@15e71c3f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:40,260> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@313da233] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:27:49,393> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:27:49 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:49,394> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:49,394> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:27:49,580> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:27:49 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:49,580> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:27:49,580> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:05,643> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:28:05 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:05,644> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:05,644> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:05,832> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:28:05 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:05,832> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:05,832> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:21,894> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:28:21 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:21,894> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:21,895> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:22,084> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:28:22 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:22,084> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:22,084> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:28:38 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,143> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@38b60f68 ---> idle_time: 81125; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@38b60f68 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@45fbf069 ---> idle_time: 81201; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@45fbf069 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@38b60f68 +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@323b19eb ---> idle_time: 81201; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@38b60f68 +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@323b19eb [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@45fbf069 +<2025-12-24 05:28:38,144> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@323b19eb +<2025-12-24 05:28:38,144> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@323b19eb +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5063eea4 ---> idle_time: 81202; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5063eea4 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5ac672ee ---> idle_time: 81209; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5ac672ee [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15e71c3f ---> idle_time: 81209; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15e71c3f [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@313da233 ---> idle_time: 81209; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@313da233 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:28:38,144> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:28:38,144> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@45fbf069 +<2025-12-24 05:28:38,144> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@38b60f68 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@38b60f68 +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@323b19eb closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@323b19eb +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@323b19eb +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5063eea4 +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5063eea4 +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@45fbf069 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@45fbf069 +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@45fbf069 +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5ac672ee +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5ac672ee +<2025-12-24 05:28:38,145> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@38b60f68 +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15e71c3f +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@15e71c3f +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@5063eea4 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5063eea4 +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5063eea4 +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@313da233 +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@313da233 +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@5ac672ee closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5ac672ee +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5ac672ee +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@313da233 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@313da233 +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@313da233 +<2025-12-24 05:28:38,146> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@15e71c3f closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,147> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@15e71c3f +<2025-12-24 05:28:38,147> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15e71c3f +<2025-12-24 05:28:38,156> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:28:38,156> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,156> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:28:38,156> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:28:38,156> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:28:38,156> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,156> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:28:38,156> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,156> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:28:38,161> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:28:38,161> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,161> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:28:38,161> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:28:38,161> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,161> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:28:38,161> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:28:38,161> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,161> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:28:38,164> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:28:38,164> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:38,164> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:28:38 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5f5786be ---> idle_time: 81215; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5f5786be [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,335> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5f5786be +<2025-12-24 05:28:38,335> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5f5786be +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60cc17af ---> idle_time: 81216; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60cc17af [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@41d47fae ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@41d47fae [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15684504 ---> idle_time: 81234; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15684504 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@cde62e7 ---> idle_time: 81234; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@cde62e7 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,335> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,336> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,336> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3dc13c5e ---> idle_time: 81237; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,336> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3dc13c5e [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@41d47fae +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@41d47fae +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60cc17af +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@60cc17af +<2025-12-24 05:28:38,336> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,336> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,336> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3d61210 ---> idle_time: 81237; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,336> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3d61210 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@41d47fae closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@41d47fae +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@41d47fae +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15684504 +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@15684504 +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@5f5786be closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5f5786be +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5f5786be +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@cde62e7 +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@cde62e7 +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@60cc17af closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@cde62e7 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@cde62e7 +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@cde62e7 +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3dc13c5e +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3dc13c5e +<2025-12-24 05:28:38,336> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23b7f2b3 ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23b7f2b3 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@a0c31a1 ---> idle_time: 81241; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@a0c31a1 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@41c3b600 ---> idle_time: 81244; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@41c3b600 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@60cc17af +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60cc17af +<2025-12-24 05:28:38,336> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@15684504 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@15684504 +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@15684504 +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23b7f2b3 +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@23b7f2b3 +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3d61210 +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3d61210 +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3dc13c5e closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3dc13c5e +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3dc13c5e +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@a0c31a1 +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@a0c31a1 +<2025-12-24 05:28:38,337> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:28:38,338> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:28:38,338> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:28:38,338> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 8 +<2025-12-24 05:28:38,338> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 9 +<2025-12-24 05:28:38,338> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 10 +<2025-12-24 05:28:38,338> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3d61210 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,338> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3d61210 +<2025-12-24 05:28:38,338> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3d61210 +<2025-12-24 05:28:38,338> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@41c3b600 +<2025-12-24 05:28:38,338> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@41c3b600 +<2025-12-24 05:28:38,337> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@23b7f2b3 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,338> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@23b7f2b3 +<2025-12-24 05:28:38,338> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23b7f2b3 +<2025-12-24 05:28:38,338> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@41c3b600 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,338> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@41c3b600 +<2025-12-24 05:28:38,338> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@41c3b600 +<2025-12-24 05:28:38,338> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@a0c31a1 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:38,339> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@a0c31a1 +<2025-12-24 05:28:38,339> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@a0c31a1 +<2025-12-24 05:28:38,343> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:28:38,343> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,343> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 9 +<2025-12-24 05:28:38,345> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:28:38,345> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,345> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 8 +<2025-12-24 05:28:38,345> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:28:38,345> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,345> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 7 +<2025-12-24 05:28:38,349> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:28:38,349> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,349> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:28:38,353> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:28:38,353> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,353> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:28:38,355> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:28:38,355> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,355> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:28:38,357> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:28:38,357> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,357> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:28:38,360> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:28:38,360> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,360> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:28:38,418> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:28:38,418> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,418> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:28:38,418> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:28:38,418> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:38,418> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:28:40,194> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:28:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:40,194> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:28:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@386f5f5] on IDLE CHECK. +<2025-12-24 05:28:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@21d7a053] on IDLE CHECK. +<2025-12-24 05:28:40,194> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@421365b1] on IDLE CHECK. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@21d7a053] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3b84762c] on IDLE CHECK. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@386f5f5] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7903b4b] on IDLE CHECK. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@421365b1] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@35f01d35] on IDLE CHECK. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3b84762c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7903b4b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1c52ad2c] on IDLE CHECK. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3cd8c411] on IDLE CHECK. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@35f01d35] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7a0f0aef] on IDLE CHECK. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3cd8c411] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7a0f0aef] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@31e1a51] on IDLE CHECK. +<2025-12-24 05:28:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1c52ad2c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@31e1a51] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,255> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:28:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:40,255> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@43818759] on IDLE CHECK. +<2025-12-24 05:28:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@97115ae] on IDLE CHECK. +<2025-12-24 05:28:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@23a3d6ed] on IDLE CHECK. +<2025-12-24 05:28:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@43818759] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@28ef9f6f] on IDLE CHECK. +<2025-12-24 05:28:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@23a3d6ed] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@268c8120] on IDLE CHECK. +<2025-12-24 05:28:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@97115ae] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@28ef9f6f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4c6f6bf] on IDLE CHECK. +<2025-12-24 05:28:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7ab76945] on IDLE CHECK. +<2025-12-24 05:28:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7ab76945] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4904d366] on IDLE CHECK. +<2025-12-24 05:28:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4c6f6bf] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2200be94] on IDLE CHECK. +<2025-12-24 05:28:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@268c8120] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2dbfac14] on IDLE CHECK. +<2025-12-24 05:28:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4904d366] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2200be94] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2dbfac14] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:28:54,395> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:28:54 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:54,395> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4904d366 ---> idle_time: 81217; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4904d366 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2200be94 ---> idle_time: 81218; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2200be94 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2dbfac14 ---> idle_time: 81218; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2dbfac14 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:54,396> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4904d366 +<2025-12-24 05:28:54,396> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2dbfac14 +<2025-12-24 05:28:54,396> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2dbfac14 +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:28:54,396> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4904d366 +<2025-12-24 05:28:54,396> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:28:54,396> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2200be94 +<2025-12-24 05:28:54,397> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2200be94 +<2025-12-24 05:28:54,397> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:28:54,397> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:28:54,397> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2200be94 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:54,399> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2200be94 +<2025-12-24 05:28:54,399> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2200be94 +<2025-12-24 05:28:54,398> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@4904d366 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:54,397> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2dbfac14 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:28:54,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2dbfac14 +<2025-12-24 05:28:54,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2dbfac14 +<2025-12-24 05:28:54,399> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4904d366 +<2025-12-24 05:28:54,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4904d366 +<2025-12-24 05:28:54,432> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:28:54,432> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:28:54,432> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:54,432> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:54,432> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:28:54,432> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:28:54,433> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:28:54,434> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:28:54,434> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:28:54,586> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:28:54 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:54,586> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:28:54,586> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:10,644> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:29:10 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:10,644> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:10,644> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:10,838> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:29:10 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:10,838> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:10,838> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:26,895> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:29:26 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:26,896> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:26,896> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:27,088> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:29:27 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:27,088> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:27,089> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:40,194> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:29:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:40,195> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@386f5f5] on IDLE CHECK. +<2025-12-24 05:29:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@21d7a053] on IDLE CHECK. +<2025-12-24 05:29:40,195> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@421365b1] on IDLE CHECK. +<2025-12-24 05:29:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@421365b1] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@21d7a053] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3b84762c] on IDLE CHECK. +<2025-12-24 05:29:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@386f5f5] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7903b4b] on IDLE CHECK. +<2025-12-24 05:29:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@35f01d35] on IDLE CHECK. +<2025-12-24 05:29:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3b84762c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7903b4b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1c52ad2c] on IDLE CHECK. +<2025-12-24 05:29:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3cd8c411] on IDLE CHECK. +<2025-12-24 05:29:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@35f01d35] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7a0f0aef] on IDLE CHECK. +<2025-12-24 05:29:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7a0f0aef] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@31e1a51] on IDLE CHECK. +<2025-12-24 05:29:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1c52ad2c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3cd8c411] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@31e1a51] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,255> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:29:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6fadb078] on IDLE CHECK. +<2025-12-24 05:29:40,256> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3b0203df] on IDLE CHECK. +<2025-12-24 05:29:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@730bc143] on IDLE CHECK. +<2025-12-24 05:29:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@3b0203df] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@43818759] on IDLE CHECK. +<2025-12-24 05:29:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@730bc143] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@97115ae] on IDLE CHECK. +<2025-12-24 05:29:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6fadb078] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@23a3d6ed] on IDLE CHECK. +<2025-12-24 05:29:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@97115ae] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@28ef9f6f] on IDLE CHECK. +<2025-12-24 05:29:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@23a3d6ed] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@268c8120] on IDLE CHECK. +<2025-12-24 05:29:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@43818759] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7ab76945] on IDLE CHECK. +<2025-12-24 05:29:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@28ef9f6f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4c6f6bf] on IDLE CHECK. +<2025-12-24 05:29:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@268c8120] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4c6f6bf] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7ab76945] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:29:43,145> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:29:43 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:43,145> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:43,145> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:43,339> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:29:43 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:43,339> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:43,339> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,397> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:29:59 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,397> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,398> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@43818759 ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,398> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@43818759 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,398> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,398> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,398> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@97115ae ---> idle_time: 81237; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,398> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@43818759 +<2025-12-24 05:29:59,398> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@43818759 +<2025-12-24 05:29:59,398> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@97115ae [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,398> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,398> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23a3d6ed ---> idle_time: 81238; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23a3d6ed [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@28ef9f6f ---> idle_time: 81238; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@28ef9f6f [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@268c8120 ---> idle_time: 81243; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@268c8120 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,399> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@97115ae +<2025-12-24 05:29:59,399> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@97115ae +<2025-12-24 05:29:59,399> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23a3d6ed +<2025-12-24 05:29:59,399> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@23a3d6ed +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7ab76945 ---> idle_time: 81243; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7ab76945 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c6f6bf ---> idle_time: 81243; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c6f6bf [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:29:59,399> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:29:59,399> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@97115ae closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,401> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@97115ae +<2025-12-24 05:29:59,401> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@97115ae +<2025-12-24 05:29:59,401> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@28ef9f6f +<2025-12-24 05:29:59,401> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@28ef9f6f +<2025-12-24 05:29:59,399> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@23a3d6ed closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,401> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@23a3d6ed +<2025-12-24 05:29:59,401> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@23a3d6ed +<2025-12-24 05:29:59,401> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@268c8120 +<2025-12-24 05:29:59,401> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@268c8120 +<2025-12-24 05:29:59,399> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@43818759 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@43818759 +<2025-12-24 05:29:59,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@43818759 +<2025-12-24 05:29:59,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7ab76945 +<2025-12-24 05:29:59,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@268c8120 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@268c8120 +<2025-12-24 05:29:59,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@268c8120 +<2025-12-24 05:29:59,401> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@28ef9f6f closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@28ef9f6f +<2025-12-24 05:29:59,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@28ef9f6f +<2025-12-24 05:29:59,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c6f6bf +<2025-12-24 05:29:59,404> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4c6f6bf +<2025-12-24 05:29:59,402> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7ab76945 +<2025-12-24 05:29:59,404> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7ab76945 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,404> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7ab76945 +<2025-12-24 05:29:59,404> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7ab76945 +<2025-12-24 05:29:59,404> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@4c6f6bf closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,405> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4c6f6bf +<2025-12-24 05:29:59,405> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4c6f6bf +<2025-12-24 05:29:59,446> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:29:59,446> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:29:59,446> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,446> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,446> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:29:59,446> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:29:59,518> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:29:59,518> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,518> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:29:59,521> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:29:59,521> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,521> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:29:59,523> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:29:59,523> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,523> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:29:59,525> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:29:59,525> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,525> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:29:59,527> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:29:59,527> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:29:59,527> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:29:59 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@386f5f5 ---> idle_time: 81172; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@386f5f5 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21d7a053 ---> idle_time: 81172; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21d7a053 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@421365b1 ---> idle_time: 81230; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@421365b1 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b84762c ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b84762c [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7903b4b ---> idle_time: 81235; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7903b4b [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@35f01d35 ---> idle_time: 81237; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@35f01d35 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,590> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@386f5f5 +<2025-12-24 05:29:59,590> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@386f5f5 +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,590> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1c52ad2c ---> idle_time: 81241; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,591> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1c52ad2c [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,591> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,591> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21d7a053 +<2025-12-24 05:29:59,591> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@21d7a053 +<2025-12-24 05:29:59,591> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@421365b1 +<2025-12-24 05:29:59,592> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@421365b1 +<2025-12-24 05:29:59,591> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3cd8c411 ---> idle_time: 81247; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3cd8c411 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7a0f0aef ---> idle_time: 81247; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7a0f0aef [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@31e1a51 ---> idle_time: 81249; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@31e1a51 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 8 +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 9 +<2025-12-24 05:29:59,592> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 10 +<2025-12-24 05:29:59,592> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@386f5f5 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@386f5f5 +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@21d7a053 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@21d7a053 +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@21d7a053 +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b84762c +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3b84762c +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@421365b1 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@421365b1 +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@421365b1 +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7903b4b +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7903b4b +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3b84762c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3b84762c +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b84762c +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@35f01d35 +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@35f01d35 +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@386f5f5 +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1c52ad2c +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1c52ad2c +<2025-12-24 05:29:59,593> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7903b4b closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,594> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7903b4b +<2025-12-24 05:29:59,594> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7903b4b +<2025-12-24 05:29:59,594> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3cd8c411 +<2025-12-24 05:29:59,594> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3cd8c411 +<2025-12-24 05:29:59,594> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@35f01d35 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,594> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@35f01d35 +<2025-12-24 05:29:59,594> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@35f01d35 +<2025-12-24 05:29:59,594> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7a0f0aef +<2025-12-24 05:29:59,594> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7a0f0aef +<2025-12-24 05:29:59,594> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3cd8c411 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,595> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7a0f0aef closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,595> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7a0f0aef +<2025-12-24 05:29:59,595> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7a0f0aef +<2025-12-24 05:29:59,595> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@31e1a51 +<2025-12-24 05:29:59,595> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@31e1a51 +<2025-12-24 05:29:59,594> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1c52ad2c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,595> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1c52ad2c +<2025-12-24 05:29:59,595> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1c52ad2c +<2025-12-24 05:29:59,596> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@31e1a51 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:29:59,596> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@31e1a51 +<2025-12-24 05:29:59,596> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@31e1a51 +<2025-12-24 05:29:59,595> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3cd8c411 +<2025-12-24 05:29:59,596> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3cd8c411 +<2025-12-24 05:29:59,605> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:29:59,605> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,605> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 9 +<2025-12-24 05:29:59,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:29:59,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 8 +<2025-12-24 05:29:59,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:29:59,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,607> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 7 +<2025-12-24 05:29:59,617> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:29:59,617> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,617> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:29:59,617> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:29:59,617> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,617> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:29:59,617> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:29:59,617> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,617> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:29:59,621> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:29:59,621> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,621> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:29:59,621> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:29:59,621> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,621> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:29:59,621> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:29:59,621> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,621> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:29:59,623> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:29:59,623> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:29:59,623> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:30:15 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6fadb078 ---> idle_time: 81214; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6fadb078 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b0203df ---> idle_time: 81215; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b0203df [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@730bc143 ---> idle_time: 81215; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@730bc143 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:30:15,647> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6fadb078 +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:30:15,647> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:30:15,647> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b0203df +<2025-12-24 05:30:15,647> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3b0203df +<2025-12-24 05:30:15,647> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@730bc143 +<2025-12-24 05:30:15,647> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@730bc143 +<2025-12-24 05:30:15,647> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6fadb078 +<2025-12-24 05:30:15,648> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@730bc143 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:30:15,648> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@730bc143 +<2025-12-24 05:30:15,648> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@730bc143 +<2025-12-24 05:30:15,648> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6fadb078 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:30:15,648> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6fadb078 +<2025-12-24 05:30:15,648> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6fadb078 +<2025-12-24 05:30:15,648> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@3b0203df closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:30:15,650> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@3b0203df +<2025-12-24 05:30:15,650> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@3b0203df +<2025-12-24 05:30:15,664> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:30:15,664> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:30:15,664> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:30:15,664> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:30:15,664> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:30:15,664> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:30:15,664> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:30:15,664> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:30:15,664> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:30:15,841> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:30:15 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:30:15,841> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:30:15,841> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:30:31,899> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:30:31 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:31,901> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:31,902> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:32,092> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:30:32 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:30:32,092> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:30:32,093> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:30:40,195> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:30:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:30:40,196> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:30:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@660a7d85] on IDLE CHECK. +<2025-12-24 05:30:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@37873d5c] on IDLE CHECK. +<2025-12-24 05:30:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1ca40e14] on IDLE CHECK. +<2025-12-24 05:30:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@660a7d85] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1ca40e14] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@54a587af] on IDLE CHECK. +<2025-12-24 05:30:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@17729e47] on IDLE CHECK. +<2025-12-24 05:30:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@37873d5c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@744e6968] on IDLE CHECK. +<2025-12-24 05:30:40,204> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@54a587af] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,204> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1785a0cd] on IDLE CHECK. +<2025-12-24 05:30:40,207> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1785a0cd] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,207> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@44becea4] on IDLE CHECK. +<2025-12-24 05:30:40,209> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@17729e47] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,209> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@608fd947] on IDLE CHECK. +<2025-12-24 05:30:40,209> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@744e6968] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,209> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@51e916ed] on IDLE CHECK. +<2025-12-24 05:30:40,212> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@44becea4] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,213> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@608fd947] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,213> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@51e916ed] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,255> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:30:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:40,255> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:30:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5808135f] on IDLE CHECK. +<2025-12-24 05:30:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7648f215] on IDLE CHECK. +<2025-12-24 05:30:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@61b3f6ba] on IDLE CHECK. +<2025-12-24 05:30:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7648f215] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@14fb1d3] on IDLE CHECK. +<2025-12-24 05:30:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5808135f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6e58ddaa] on IDLE CHECK. +<2025-12-24 05:30:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@61b3f6ba] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1d49f9c5] on IDLE CHECK. +<2025-12-24 05:30:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@14fb1d3] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@267d657f] on IDLE CHECK. +<2025-12-24 05:30:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6e58ddaa] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2ac7c60a] on IDLE CHECK. +<2025-12-24 05:30:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@267d657f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@24eccb2b] on IDLE CHECK. +<2025-12-24 05:30:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1d49f9c5] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@96373fd] on IDLE CHECK. +<2025-12-24 05:30:40,260> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2ac7c60a] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,260> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@24eccb2b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:40,260> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@96373fd] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:30:48,157> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:30:48 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:48,160> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:48,161> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:30:48,343> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:30:48 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:30:48,343> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:30:48,344> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:04,405> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:31:04 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:04,406> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:04,406> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:04,595> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:31:04 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:04,595> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:04,595> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,656> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:31:20 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,656> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,656> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@14fb1d3 ---> idle_time: 81129; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,656> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@14fb1d3 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6e58ddaa ---> idle_time: 81132; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6e58ddaa [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1d49f9c5 ---> idle_time: 81134; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@14fb1d3 +<2025-12-24 05:31:20,657> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6e58ddaa +<2025-12-24 05:31:20,657> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6e58ddaa +<2025-12-24 05:31:20,657> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@14fb1d3 +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1d49f9c5 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@267d657f ---> idle_time: 81136; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@267d657f [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2ac7c60a ---> idle_time: 81139; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2ac7c60a [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24eccb2b ---> idle_time: 81211; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1d49f9c5 +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24eccb2b [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1d49f9c5 +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@96373fd ---> idle_time: 81211; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@96373fd [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,657> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:20,668> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:31:20,668> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:31:20,668> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:31:20,668> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:31:20,668> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:31:20,668> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:31:20,668> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:31:20,674> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1d49f9c5 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,680> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1d49f9c5 +<2025-12-24 05:31:20,680> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1d49f9c5 +<2025-12-24 05:31:20,674> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@14fb1d3 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,681> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@14fb1d3 +<2025-12-24 05:31:20,681> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@14fb1d3 +<2025-12-24 05:31:20,674> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6e58ddaa closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,681> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2ac7c60a +<2025-12-24 05:31:20,681> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2ac7c60a +<2025-12-24 05:31:20,681> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6e58ddaa +<2025-12-24 05:31:20,680> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@267d657f +<2025-12-24 05:31:20,681> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@267d657f +<2025-12-24 05:31:20,681> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6e58ddaa +<2025-12-24 05:31:20,681> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24eccb2b +<2025-12-24 05:31:20,681> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@24eccb2b +<2025-12-24 05:31:20,682> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2ac7c60a closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,683> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2ac7c60a +<2025-12-24 05:31:20,683> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2ac7c60a +<2025-12-24 05:31:20,683> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@96373fd +<2025-12-24 05:31:20,683> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@96373fd +<2025-12-24 05:31:20,683> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@267d657f closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,683> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@267d657f +<2025-12-24 05:31:20,683> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@267d657f +<2025-12-24 05:31:20,684> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@24eccb2b closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,684> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@24eccb2b +<2025-12-24 05:31:20,684> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@24eccb2b +<2025-12-24 05:31:20,687> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@96373fd closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,688> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@96373fd +<2025-12-24 05:31:20,688> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@96373fd +<2025-12-24 05:31:20,698> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:31:20,698> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:31:20,698> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,698> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:31:20,698> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,698> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,698> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:31:20,698> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:31:20,698> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:31:20,718> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:31:20,718> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,718> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:31:20,719> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:31:20,719> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,719> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:31:20,720> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:31:20,720> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,720> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:31:20,726> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:31:20,726> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:20,726> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:31:20 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@660a7d85 ---> idle_time: 81222; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@660a7d85 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@37873d5c ---> idle_time: 81224; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@37873d5c [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,845> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@660a7d85 +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,845> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@660a7d85 +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1ca40e14 ---> idle_time: 81224; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1ca40e14 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,845> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@37873d5c +<2025-12-24 05:31:20,845> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1ca40e14 +<2025-12-24 05:31:20,845> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1ca40e14 +<2025-12-24 05:31:20,845> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@660a7d85 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@660a7d85 +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@660a7d85 +<2025-12-24 05:31:20,845> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1ca40e14 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1ca40e14 +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1ca40e14 +<2025-12-24 05:31:20,845> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@37873d5c +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@54a587af ---> idle_time: 81225; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@54a587af [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17729e47 ---> idle_time: 81229; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17729e47 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@37873d5c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@37873d5c +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@37873d5c +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17729e47 +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@17729e47 +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@54a587af +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@54a587af +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@17729e47 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@17729e47 +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17729e47 +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@744e6968 ---> idle_time: 81229; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@744e6968 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1785a0cd ---> idle_time: 81229; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1785a0cd [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@44becea4 ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@44becea4 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@608fd947 ---> idle_time: 81239; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@608fd947 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@51e916ed ---> idle_time: 81241; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@51e916ed [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@54a587af closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@54a587af +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@54a587af +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@44becea4 +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@44becea4 +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@744e6968 +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@44becea4 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@44becea4 +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@44becea4 +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@608fd947 +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@608fd947 +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@744e6968 +<2025-12-24 05:31:20,846> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1785a0cd +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1785a0cd +<2025-12-24 05:31:20,846> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1785a0cd closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1785a0cd +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1785a0cd +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@51e916ed +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@51e916ed +<2025-12-24 05:31:20,847> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,847> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:20,847> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:31:20,847> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:31:20,847> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:31:20,847> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:31:20,847> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:31:20,847> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:31:20,847> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@744e6968 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@744e6968 +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@744e6968 +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@608fd947 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,848> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@608fd947 +<2025-12-24 05:31:20,848> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@608fd947 +<2025-12-24 05:31:20,847> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@51e916ed closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:20,848> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@51e916ed +<2025-12-24 05:31:20,848> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@51e916ed +<2025-12-24 05:31:20,847> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 8 +<2025-12-24 05:31:20,848> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 9 +<2025-12-24 05:31:20,848> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 10 +<2025-12-24 05:31:20,851> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:31:20,851> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,851> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 9 +<2025-12-24 05:31:20,851> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:31:20,851> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,851> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 8 +<2025-12-24 05:31:20,852> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:31:20,852> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,852> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 7 +<2025-12-24 05:31:20,858> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:31:20,858> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,858> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:31:20,858> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:31:20,858> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,858> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:31:20,859> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:31:20,859> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,859> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:31:20,866> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:31:20,866> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,866> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:31:20,867> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:31:20,867> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,867> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:31:20,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:31:20,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,868> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:31:20,870> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:31:20,870> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:20,870> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:31:36,907> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:31:36 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5808135f ---> idle_time: 81245; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5808135f [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7648f215 ---> idle_time: 81245; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7648f215 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@61b3f6ba ---> idle_time: 81245; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@61b3f6ba [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:36,909> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5808135f +<2025-12-24 05:31:36,909> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5808135f +<2025-12-24 05:31:36,909> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@61b3f6ba +<2025-12-24 05:31:36,909> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@61b3f6ba +<2025-12-24 05:31:36,909> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7648f215 +<2025-12-24 05:31:36,909> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7648f215 +<2025-12-24 05:31:36,909> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:36,910> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:36,910> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:36,910> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:31:36,910> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:31:36,910> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:31:36,912> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@61b3f6ba closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:36,912> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@61b3f6ba +<2025-12-24 05:31:36,912> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@61b3f6ba +<2025-12-24 05:31:36,912> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@5808135f closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:36,912> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5808135f +<2025-12-24 05:31:36,912> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5808135f +<2025-12-24 05:31:36,912> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7648f215 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:31:36,913> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7648f215 +<2025-12-24 05:31:36,913> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7648f215 +<2025-12-24 05:31:36,922> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:31:36,922> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:31:36,922> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:36,922> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:36,922> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:31:36,923> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:36,923> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:31:36,923> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:31:36,923> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:31:37,095> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:31:37 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:37,096> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:37,096> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:40,196> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:31:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:40,196> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:31:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@e89aeea] on IDLE CHECK. +<2025-12-24 05:31:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5e9db12c] on IDLE CHECK. +<2025-12-24 05:31:40,196> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1a77ae7c] on IDLE CHECK. +<2025-12-24 05:31:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@e89aeea] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2f419650] on IDLE CHECK. +<2025-12-24 05:31:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2f419650] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@78fc648f] on IDLE CHECK. +<2025-12-24 05:31:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5e9db12c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1a77ae7c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,201> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@215a68d5] on IDLE CHECK. +<2025-12-24 05:31:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@199737fa] on IDLE CHECK. +<2025-12-24 05:31:40,201> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@78fc648f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,202> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@669e9ad] on IDLE CHECK. +<2025-12-24 05:31:40,203> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@199737fa] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,203> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@215a68d5] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,203> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60f7155e] on IDLE CHECK. +<2025-12-24 05:31:40,203> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4d3677c3] on IDLE CHECK. +<2025-12-24 05:31:40,204> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@669e9ad] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,204> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4d3677c3] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,205> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60f7155e] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,255> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:31:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:40,255> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:31:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@17e8029c] on IDLE CHECK. +<2025-12-24 05:31:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6d96b9a7] on IDLE CHECK. +<2025-12-24 05:31:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@236ba940] on IDLE CHECK. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@17e8029c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7cd531e8] on IDLE CHECK. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6d96b9a7] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7d5c13c9] on IDLE CHECK. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@236ba940] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@13baa14b] on IDLE CHECK. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@13baa14b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@27252487] on IDLE CHECK. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7d5c13c9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@cf36536] on IDLE CHECK. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7cd531e8] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6be87c19] on IDLE CHECK. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@27252487] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7a1726ef] on IDLE CHECK. +<2025-12-24 05:31:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6be87c19] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@cf36536] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7a1726ef] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:31:53,157> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:31:53 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:53,158> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:53,158> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:31:53,347> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:31:53 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:53,347> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:31:53,347> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:09,408> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:32:09 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:09,409> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:09,409> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:09,597> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:32:09 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:09,597> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:09,597> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:25,660> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:32:25 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:25,660> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:25,660> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:25,849> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:32:25 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:25,849> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:25,850> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:29,935> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:29,935> DEBUG [http-8080-1](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:29,935> DEBUG [http-8080-1](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:29,935> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:29,935> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:29,935> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:29,935> DEBUG [http-8080-9](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:29,935> DEBUG [http-8080-9](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:29,935> DEBUG [http-8080-9](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:29,935> DEBUG [http-8080-9](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:29,935> DEBUG [http-8080-1](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:29,935> DEBUG [http-8080-1](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:29,936> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"bdo477yfpr5j723c0","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:29,936> DEBUG [http-8080-9](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"bdo477yfpr5j723c1","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:29,936> DEBUG [http-8080-1](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"bdo477yfpr5j723c2","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:29,938> DEBUG [http-8080-9](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:29,938> DEBUG [http-8080-9](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:29,938> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:29,938> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:29,938> DEBUG [http-8080-9](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:29,938> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:29,938> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:29,938> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:29,938> DEBUG [http-8080-1](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:29,938> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:29,938> DEBUG [http-8080-1](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:29,938> DEBUG [http-8080-9](SOKRATI) - Request Authorized +<2025-12-24 05:32:29,938> DEBUG [http-8080-9](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:29,938> ERROR [http-8080-9](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:29,938> DEBUG [http-8080-1](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:29,938> DEBUG [http-8080-1](SOKRATI) - Request Authorized +<2025-12-24 05:32:29,938> DEBUG [http-8080-1](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:29,938> ERROR [http-8080-1](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:29,938> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:29,938> ERROR [http-8080-9](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:29,939> ERROR [http-8080-9](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:29,938> ERROR [http-8080-1](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:29,939> ERROR [http-8080-1](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:29,939> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:29,967> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:29,967> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:29,967> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:29,967> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:29,967> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"bdo477yfpr5j7433f","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:29,967> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:29,967> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:29,968> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:29,968> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:29,968> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:29,968> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:29,968> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:29,968> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:30,034> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:30,034> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:30,034> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:30,034> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:30,034> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"bdo477yfpr5j75h90","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:30,035> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:30,035> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:30,035> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:30,035> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:30,035> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:30,035> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:30,035> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:30,035> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:30,046> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:30,046> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:30,046> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:30,046> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:30,046> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"bdo477yfpr5j75pql","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:30,048> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:30,048> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:30,048> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:30,048> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:30,048> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:30,048> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:30,048> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:30,048> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:31,048> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:31,048> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:31,048> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:31,048> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:31,048> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"bdo477yfpr5j7r8fi","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:31,049> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:31,049> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:31,049> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:31,049> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:31,049> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:31,049> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:31,050> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:31,050> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:32,050> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:32,050> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:32,050> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:32,050> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:32,050> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"bdo477yfpr5j8cpkv","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:32,051> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:32,051> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:32,051> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:32,051> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:32,051> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:32,051> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:32,051> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:32,051> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:33,046> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:33,046> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:33,046> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:33,046> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:33,046> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"bdo477yfpr5j8y2vc","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:33,049> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:33,049> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:33,049> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:33,049> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:33,049> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:33,049> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:33,050> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:33,050> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:34,046> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:34,046> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:34,046> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:34,046> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:34,047> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"bdo477yfpr5j9jj8x","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:34,048> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:34,048> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:34,048> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:34,048> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:34,048> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:34,048> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:34,048> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:34,049> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:35,049> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:35,049> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:35,049> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:35,049> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:35,049> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjcte3wa","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:35,050> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:35,050> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:35,050> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:35,050> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:35,050> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:35,050> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:35,050> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:35,050> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:36,044> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:36,044> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:36,044> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:36,044> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:36,044> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjczbdd7","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:36,045> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:36,045> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:36,045> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:36,045> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:36,045> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:36,045> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:36,045> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:36,045> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:37,051> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:37,051> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:37,051> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:37,051> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:37,052> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjd5arzw","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:37,054> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:37,054> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:37,054> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:37,054> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:37,054> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:37,055> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:37,055> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:37,055> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:38,046> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:38,046> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:38,046> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:38,046> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:38,047> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjdb8gwd","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:38,048> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:38,048> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:38,048> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:38,048> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:38,048> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:38,048> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:38,048> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:38,049> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:39,049> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:39,049> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:39,049> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:39,049> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:39,049> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjdh70ny","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:39,051> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:39,051> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:39,051> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:39,051> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:39,051> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:39,051> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:39,051> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:39,051> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:40,087> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:40,087> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:40,087> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:40,087> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:40,087> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjdnbzwv","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:40,087> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:40,087> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:40,087> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:40,087> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:40,087> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:40,087> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:40,087> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:40,088> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:40,197> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:32:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:40,197> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@e89aeea] on IDLE CHECK. +<2025-12-24 05:32:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5e9db12c] on IDLE CHECK. +<2025-12-24 05:32:40,197> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1a77ae7c] on IDLE CHECK. +<2025-12-24 05:32:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@1a77ae7c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2f419650] on IDLE CHECK. +<2025-12-24 05:32:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@e89aeea] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@78fc648f] on IDLE CHECK. +<2025-12-24 05:32:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@5e9db12c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@199737fa] on IDLE CHECK. +<2025-12-24 05:32:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@2f419650] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,198> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@215a68d5] on IDLE CHECK. +<2025-12-24 05:32:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@78fc648f] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,199> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@669e9ad] on IDLE CHECK. +<2025-12-24 05:32:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@199737fa] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,200> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4d3677c3] on IDLE CHECK. +<2025-12-24 05:32:40,204> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@215a68d5] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,204> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60f7155e] on IDLE CHECK. +<2025-12-24 05:32:40,207> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@4d3677c3] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,207> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@669e9ad] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,207> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@60f7155e] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,255> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Refurbishing idle resources - Wed Dec 24 05:32:40 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:40,255> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@17e8029c] on IDLE CHECK. +<2025-12-24 05:32:40,255> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6d96b9a7] on IDLE CHECK. +<2025-12-24 05:32:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@236ba940] on IDLE CHECK. +<2025-12-24 05:32:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@236ba940] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@17e8029c] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7d5c13c9] on IDLE CHECK. +<2025-12-24 05:32:40,256> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7cd531e8] on IDLE CHECK. +<2025-12-24 05:32:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6d96b9a7] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@13baa14b] on IDLE CHECK. +<2025-12-24 05:32:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7d5c13c9] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,257> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@27252487] on IDLE CHECK. +<2025-12-24 05:32:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7cd531e8] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,258> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@cf36536] on IDLE CHECK. +<2025-12-24 05:32:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@27252487] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6be87c19] on IDLE CHECK. +<2025-12-24 05:32:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@13baa14b] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Testing PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7a1726ef] on IDLE CHECK. +<2025-12-24 05:32:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@cf36536] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@6be87c19] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:40,259> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Test of PooledConnection [com.mchange.v2.c3p0.impl.NewPooledConnection@7a1726ef] on IDLE CHECK has SUCCEEDED. +<2025-12-24 05:32:41,052> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:41,052> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:41,052> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:41,052> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:41,053> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjdt4474","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:41,054> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:41,054> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:41,054> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:41,054> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:41,054> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:41,054> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:41,054> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:41,055> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:41,910> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:32:41 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7cd531e8 ---> idle_time: 81185; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7cd531e8 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7d5c13c9 ---> idle_time: 81191; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7d5c13c9 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@13baa14b ---> idle_time: 81192; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@13baa14b [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7cd531e8 +<2025-12-24 05:32:41,911> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7cd531e8 +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@27252487 ---> idle_time: 81193; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@27252487 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@cf36536 ---> idle_time: 81213; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@cf36536 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,911> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7d5c13c9 +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6be87c19 ---> idle_time: 81213; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6be87c19 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,911> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@13baa14b +<2025-12-24 05:32:41,911> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@13baa14b +<2025-12-24 05:32:41,911> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7d5c13c9 +<2025-12-24 05:32:41,913> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7cd531e8 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:41,916> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7cd531e8 +<2025-12-24 05:32:41,916> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7cd531e8 +<2025-12-24 05:32:41,916> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@27252487 +<2025-12-24 05:32:41,916> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@27252487 +<2025-12-24 05:32:41,911> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7a1726ef ---> idle_time: 81218; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7a1726ef [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:32:41,915> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7d5c13c9 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:41,917> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7d5c13c9 +<2025-12-24 05:32:41,917> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7d5c13c9 +<2025-12-24 05:32:41,917> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@cf36536 +<2025-12-24 05:32:41,917> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@cf36536 +<2025-12-24 05:32:41,917> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@13baa14b closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:41,917> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@13baa14b +<2025-12-24 05:32:41,917> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@13baa14b +<2025-12-24 05:32:41,917> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6be87c19 +<2025-12-24 05:32:41,917> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6be87c19 +<2025-12-24 05:32:41,916> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:32:41,918> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:32:41,918> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@27252487 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:41,918> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@27252487 +<2025-12-24 05:32:41,918> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@27252487 +<2025-12-24 05:32:41,918> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7a1726ef +<2025-12-24 05:32:41,918> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7a1726ef +<2025-12-24 05:32:41,919> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@cf36536 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:41,919> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@cf36536 +<2025-12-24 05:32:41,919> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@cf36536 +<2025-12-24 05:32:41,919> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@7a1726ef closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:41,919> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@7a1726ef +<2025-12-24 05:32:41,919> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@7a1726ef +<2025-12-24 05:32:41,920> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6be87c19 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:41,920> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6be87c19 +<2025-12-24 05:32:41,920> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6be87c19 +<2025-12-24 05:32:41,945> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:32:41,945> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:32:41,945> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:32:41,946> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,946> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:32:41,946> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,946> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:32:41,946> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:41,946> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:32:42,019> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:32:42,019> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:42,019> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:32:42,020> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:32:42,020> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:42,020> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:32:42,020> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:32:42,020> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:42,020> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:32:42,029> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:32:42,029> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:42,029> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:32:42,043> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:42,043> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:42,043> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:42,043> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:42,043> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjdz1do1","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:42,043> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:42,043> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:42,044> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:42,044> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:42,044> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:42,044> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:42,044> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:42,044> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:32:42 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@e89aeea ---> idle_time: 81230; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@e89aeea [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5e9db12c ---> idle_time: 81232; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5e9db12c [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1a77ae7c ---> idle_time: 81233; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1a77ae7c [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2f419650 ---> idle_time: 81234; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2f419650 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@e89aeea +<2025-12-24 05:32:42,100> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@e89aeea +<2025-12-24 05:32:42,100> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5e9db12c +<2025-12-24 05:32:42,100> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5e9db12c +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@78fc648f ---> idle_time: 81241; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@78fc648f [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,100> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@199737fa ---> idle_time: 81242; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,100> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1a77ae7c +<2025-12-24 05:32:42,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1a77ae7c +<2025-12-24 05:32:42,101> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@199737fa [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,101> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@5e9db12c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:42,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@5e9db12c +<2025-12-24 05:32:42,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@5e9db12c +<2025-12-24 05:32:42,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2f419650 +<2025-12-24 05:32:42,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2f419650 +<2025-12-24 05:32:42,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@e89aeea closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:42,102> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@e89aeea +<2025-12-24 05:32:42,102> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@e89aeea +<2025-12-24 05:32:42,102> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@78fc648f +<2025-12-24 05:32:42,102> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@78fc648f +<2025-12-24 05:32:42,102> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@2f419650 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:42,101> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@1a77ae7c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@1a77ae7c +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@1a77ae7c +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@199737fa +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@199737fa +<2025-12-24 05:32:42,101> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@215a68d5 ---> idle_time: 81245; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@199737fa closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@199737fa +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@199737fa +<2025-12-24 05:32:42,102> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@78fc648f closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@78fc648f +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@78fc648f +<2025-12-24 05:32:42,102> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@2f419650 +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@2f419650 +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@215a68d5 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@669e9ad ---> idle_time: 81251; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@669e9ad [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@215a68d5 +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@215a68d5 +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4d3677c3 ---> idle_time: 81252; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4d3677c3 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@669e9ad +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@669e9ad +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60f7155e ---> idle_time: 81252; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60f7155e [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 0, unused: 0, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 4 +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 5 +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 6 +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 7 +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 8 +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 9 +<2025-12-24 05:32:42,103> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 10 +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@215a68d5 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@215a68d5 +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@669e9ad closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:42,104> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@669e9ad +<2025-12-24 05:32:42,104> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@669e9ad +<2025-12-24 05:32:42,104> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60f7155e +<2025-12-24 05:32:42,104> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@60f7155e +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4d3677c3 +<2025-12-24 05:32:42,104> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4d3677c3 +<2025-12-24 05:32:42,103> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@215a68d5 +<2025-12-24 05:32:42,104> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@60f7155e closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:42,104> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@60f7155e +<2025-12-24 05:32:42,104> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@60f7155e +<2025-12-24 05:32:42,104> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@4d3677c3 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:42,104> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@4d3677c3 +<2025-12-24 05:32:42,104> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@4d3677c3 +<2025-12-24 05:32:42,112> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:32:42,113> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 1, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,113> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 9 +<2025-12-24 05:32:42,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:32:42,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 8 +<2025-12-24 05:32:42,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:32:42,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 3, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,114> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 7 +<2025-12-24 05:32:42,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:32:42,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 4, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 6 +<2025-12-24 05:32:42,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:32:42,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 5, unused: 5, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 5 +<2025-12-24 05:32:42,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:32:42,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 6, unused: 6, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,119> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 4 +<2025-12-24 05:32:42,122> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:32:42,122> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,122> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 3 +<2025-12-24 05:32:42,122> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:32:42,122> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,122> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:32:42,123> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:32:42,123> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,123> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:32:42,124> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6093b721.acquireResource() returning. +<2025-12-24 05:32:42,124> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@6e934fdf) +<2025-12-24 05:32:42,124> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:32:43,053> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:43,053> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:43,053> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:43,053> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:43,053> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jje517qa","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:43,054> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:43,054> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:43,054> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:43,054> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:43,054> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:43,054> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:43,054> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:43,054> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:44,046> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:44,046> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:44,046> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:44,046> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:44,047> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjeayh77","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:44,048> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:44,048> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:44,048> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:44,048> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:44,048> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:44,048> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:44,048> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:44,049> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:45,051> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:45,052> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:45,052> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:45,052> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:45,052> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjegx8ok","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:45,053> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:45,053> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:45,053> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:45,053> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:45,053> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:45,053> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:45,053> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:45,053> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:46,048> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:46,048> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:46,048> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:46,048> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:46,048> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjemvd0l","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:46,051> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:46,051> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:46,051> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:46,051> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:46,051> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:46,051> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:46,051> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:46,052> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:47,047> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:47,047> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:47,047> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:47,047> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:47,047> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjestp2e","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:47,048> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:47,048> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:47,048> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:47,048> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:47,048> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:47,048> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:47,048> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:47,049> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:48,042> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:48,042> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:48,042> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:48,042> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:48,043> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjeyr693","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:48,043> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:48,043> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:48,043> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:48,043> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:48,043> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:48,043> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:48,043> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:48,043> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:49,041> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:49,041> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:49,041> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:49,041> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:49,041> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjf4pal4","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:49,041> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:49,041> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:49,041> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:49,041> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:49,041> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:49,041> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:49,041> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:49,042> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:50,048> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:50,048> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:50,048> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:50,048> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:50,048> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjfaop7t","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:50,051> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:50,051> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:50,051> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:50,051> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:50,051> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:50,051> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:50,051> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:50,052> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:51,044> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:51,044> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:51,044> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:51,044> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:51,044> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjfgmlu2","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:51,045> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:51,045> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:51,045> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:51,045> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:51,045> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:51,045> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:51,045> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:51,045> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:52,048> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:52,048> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:52,048> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:52,048> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:52,049> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjfmll17","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:52,050> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:52,050> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:52,050> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:52,050> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:52,050> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:52,050> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:52,050> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:52,050> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:53,045> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:53,045> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:53,045> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:53,045> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:53,045> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjfsjhng","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:53,046> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:53,046> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:53,046> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:53,046> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:53,046> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:53,046> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:53,046> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:53,046> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:54,043> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:54,043> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:54,043> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:54,043> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:54,043> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjfyhe9p","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:54,044> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:54,044> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:54,044> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:54,044> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:54,044> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:54,044> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:54,044> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:54,044> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:55,046> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:55,046> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:55,046> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:55,046> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:55,047> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjg4g5r2","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:55,050> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:55,050> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:55,050> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:55,050> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:55,050> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:55,050> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:55,050> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:55,051> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:56,043> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:56,043> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:56,043> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:56,043> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:56,043> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjgae2db","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:56,045> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:56,045> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:56,045> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:56,045> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:56,045> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:56,045> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:56,045> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:56,045> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:57,045> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:57,045> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:57,045> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:57,045> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:57,045> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjggcm4w","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:57,045> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:57,045> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:57,045> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:57,045> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:57,045> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:57,045> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:57,045> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:57,045> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:58,042> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:58,043> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:58,043> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:58,043> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:58,043> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjgmair5","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:58,043> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:58,043> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:58,043> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:58,043> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:58,043> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:58,043> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:58,043> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:58,043> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:58,161> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:32:58 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:58,161> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17e8029c ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17e8029c [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6d96b9a7 ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6d96b9a7 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:58,162> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17e8029c +<2025-12-24 05:32:58,162> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@17e8029c +<2025-12-24 05:32:58,162> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6d96b9a7 +<2025-12-24 05:32:58,162> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6d96b9a7 +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - EXPIRED idle resource: com.mchange.v2.c3p0.impl.NewPooledConnection@236ba940 ---> idle_time: 81240; max_idle_time: 65000 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - Removing expired resource: com.mchange.v2.c3p0.impl.NewPooledConnection@236ba940 [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 7, unused: 7, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@781a9412] +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 1 +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 2 +<2025-12-24 05:32:58,162> DEBUG [Timer-1](com.mchange.v2.resourcepool.BasicResourcePool) - incremented pending_acquires: 3 +<2025-12-24 05:32:58,162> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Preparing to destroy resource: com.mchange.v2.c3p0.impl.NewPooledConnection@236ba940 +<2025-12-24 05:32:58,162> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Preparing to destroy PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@236ba940 +<2025-12-24 05:32:58,163> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@17e8029c closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:58,164> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@236ba940 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:58,164> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@236ba940 +<2025-12-24 05:32:58,164> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@236ba940 +<2025-12-24 05:32:58,164> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.NewPooledConnection) - com.mchange.v2.c3p0.impl.NewPooledConnection@6d96b9a7 closed by a client. +java.lang.Exception: DEBUG -- CLOSE BY CLIENT STACK TRACE + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:564) + at com.mchange.v2.c3p0.impl.NewPooledConnection.close(NewPooledConnection.java:234) + at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.destroyResource(C3P0PooledConnectionPool.java:470) + at com.mchange.v2.resourcepool.BasicResourcePool$1DestroyResourceTask.run(BasicResourcePool.java:958) + at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547) +<2025-12-24 05:32:58,165> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@6d96b9a7 +<2025-12-24 05:32:58,164> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - Successfully destroyed PooledConnection: com.mchange.v2.c3p0.impl.NewPooledConnection@17e8029c +<2025-12-24 05:32:58,165> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@17e8029c +<2025-12-24 05:32:58,165> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - Successfully destroyed resource: com.mchange.v2.c3p0.impl.NewPooledConnection@6d96b9a7 +<2025-12-24 05:32:58,172> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:32:58,172> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:32:58,172> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool) - com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@6b6f3f9c.acquireResource() returning. +<2025-12-24 05:32:58,172> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 8, unused: 8, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:58,172> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 9, unused: 9, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:58,172> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 2 +<2025-12-24 05:32:58,173> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - trace com.mchange.v2.resourcepool.BasicResourcePool@781a9412 [managed: 10, unused: 10, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@1ba20ffe) +<2025-12-24 05:32:58,173> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 1 +<2025-12-24 05:32:58,173> DEBUG [com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2](com.mchange.v2.resourcepool.BasicResourcePool) - decremented pending_acquires: 0 +<2025-12-24 05:32:58,352> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - Checking for expired resources - Wed Dec 24 05:32:58 GMT 2025 [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:58,352> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:58,352> DEBUG [Timer-0](com.mchange.v2.resourcepool.BasicResourcePool) - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@63b1d4fa] +<2025-12-24 05:32:59,046> DEBUG [http-8080-2](SOKRATI) - cookieName: UA_TOKEN uaToken: null +<2025-12-24 05:32:59,046> DEBUG [http-8080-2](SOKRATI) - tokenHeaderName: x-ua-token uaToken: null +<2025-12-24 05:32:59,046> DEBUG [http-8080-2](SOKRATI) - cookieName: ubid ubid: null +<2025-12-24 05:32:59,046> DEBUG [http-8080-2](SOKRATI) - ubidHeaderName: ubid ubid: null +<2025-12-24 05:32:59,046> DEBUG [http-8080-2](SOKRATI) - Received Request: {"token":null,"ubid":null,"ipAddress":"10.244.1.1","aclEntry":{"level":"CLIENT","permission":"ACL_APP"},"appToken":null,"sokratiRequestId":"35sp607kd5jjgs9po2","userId":null,"clientId":null,"agencyId":null,"application":"nagios"} +<2025-12-24 05:32:59,048> DEBUG [http-8080-2](SOKRATI) - Authorizing Request: com.sokrati.hadesObjects.AppAuthorizeRequest +<2025-12-24 05:32:59,048> DEBUG [http-8080-2](SOKRATI) - ++++++++++++++++++++++++++++++++++++++++ +<2025-12-24 05:32:59,048> DEBUG [http-8080-2](SOKRATI) - REST REQUEST IN COMMUNICATORAuthorizeRequest [m_token=null, m_ubid=null, m_ipAddress=10.244.1.1, m_aclEntry=ACLEntry [m_level=CLIENT, m_method=null, permissions=[ACL_APP]], m_appToken=null] +<2025-12-24 05:32:59,048> DEBUG [http-8080-2](SOKRATI) - Request Authorized +<2025-12-24 05:32:59,048> DEBUG [http-8080-2](SOKRATI) - AppIP Check : Request from app: nagios from ip: 10.244.1.1 +<2025-12-24 05:32:59,048> ERROR [http-8080-2](SOKRATI) - AppToken not specified in the request, Request can not be authorized. +<2025-12-24 05:32:59,048> ERROR [http-8080-2](SOKRATI) - AccessDeniedError error occurred :: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) +<2025-12-24 05:32:59,049> ERROR [http-8080-2](SOKRATI) - Received an rest error: +com.sokrati.restObjects.exceptions.AccessDeniedError: AppToken not specified in the request, Request can not be authorized. + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:254) + at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeMethod(RestCommunicator.java:323) + at com.sokrati.restCommunicator.RestCommunicator.invokeInsert(RestCommunicator.java:296) + at com.sokrati.hades.servlet.Authorize.insert(Authorize.java:78) + at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at com.sokrati.restCommunicator.RestCommunicator.invokeServiceMethod(RestCommunicator.java:406) + at com.sokrati.restCommunicator.RestCommunicator.doPost(RestCommunicator.java:218) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) + at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) + at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) + at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) + at java.lang.Thread.run(Thread.java:748) diff --git a/property-settings-svc-v2-chart/sql/000_create_property_settings_db.sql b/property-settings-svc-v2-chart/sql/000_create_property_settings_db.sql new file mode 100644 index 0000000..2e8735f --- /dev/null +++ b/property-settings-svc-v2-chart/sql/000_create_property_settings_db.sql @@ -0,0 +1 @@ +create database if not exists property_settings_db_v2; diff --git a/property-settings-svc-v2-chart/sql/001_properties_table.sql b/property-settings-svc-v2-chart/sql/001_properties_table.sql new file mode 100644 index 0000000..2325f8f --- /dev/null +++ b/property-settings-svc-v2-chart/sql/001_properties_table.sql @@ -0,0 +1,30 @@ +use property_settings_db_v2; + +create table properties +( + entity_type VARCHAR(200) NOT NULL, + entity_value VARCHAR(200) NOT NULL, + property_type VARCHAR(200) NOT NULL, + property_value BLOB NOT NULL, + is_active BOOLEAN NOT NULL DEFAULT 1, + + PRIMARY KEY (entity_type, entity_value, property_type) +) ENGINE=INNODB DEFAULT CHARSET=utf8; + +ALTER TABLE properties ADD COLUMN creation_date DATETIME; +ALTER TABLE properties ADD COLUMN last_update DATETIME; +ALTER TABLE properties ADD COLUMN last_updated_by VARCHAR(150); +delimiter // +CREATE TRIGGER properties_insert_trigger BEFORE INSERT ON properties +FOR EACH ROW BEGIN + SET NEW.creation_date=NOW(); + SET NEW.last_updated_by=USER(); + SET NEW.last_update=NOW(); +END;// +CREATE TRIGGER properties_update_trigger BEFORE UPDATE ON properties +FOR EACH ROW +BEGIN + SET NEW.last_updated_by=USER(); + SET NEW.last_update = NOW(); +END;// +delimiter ; diff --git a/property-settings-svc-v2-chart/sql/002_populate_properties_table.sql b/property-settings-svc-v2-chart/sql/002_populate_properties_table.sql new file mode 100644 index 0000000..ca86f48 --- /dev/null +++ b/property-settings-svc-v2-chart/sql/002_populate_properties_table.sql @@ -0,0 +1,19 @@ +#use property_settings_db_v2; +#INSERT INTO properties +#( +# entity_type, +# entity_value, +# property_type, +# property_value, +# is_active +#) +#SELECT +# e.name as entity_type, +# CONCAT(prop.client_id, "_", prop.entity_id) AS entity_value, +# p.name AS property_type, +# prop.property_value, +# prop.is_active +#FROM propertiesV1 prop, +# property_types p, entity_types e +#WHERE +# prop.property_type_id = p.id AND prop.entity_type_id = e.id; diff --git a/property-settings-svc-v2-chart/sql/003_alter_column_property_value.sql b/property-settings-svc-v2-chart/sql/003_alter_column_property_value.sql new file mode 100644 index 0000000..aabf2f3 --- /dev/null +++ b/property-settings-svc-v2-chart/sql/003_alter_column_property_value.sql @@ -0,0 +1,3 @@ +use property_settings_db_v2; + +ALTER TABLE `properties` CHANGE COLUMN `property_value` `property_value` text NOT NULL; diff --git a/property-settings-svc-v2-chart/sql/004_property_settings_db_v2.sql b/property-settings-svc-v2-chart/sql/004_property_settings_db_v2.sql new file mode 100644 index 0000000..ac15f2d --- /dev/null +++ b/property-settings-svc-v2-chart/sql/004_property_settings_db_v2.sql @@ -0,0 +1,121 @@ +-- MySQL dump 10.13 Distrib 8.0.36, for Linux (x86_64) +-- +-- Host: 127.0.0.1 Database: property_settings_db_v2 +-- ------------------------------------------------------ +-- Server version 8.0.33 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!50503 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `properties` +-- +use property_settings_db_v2; +DROP TABLE IF EXISTS `properties`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `properties` ( + `entity_type` varchar(200) NOT NULL, + `entity_value` varchar(200) NOT NULL, + `property_type` varchar(200) NOT NULL, + `property_value` text NOT NULL, + `is_active` tinyint(1) NOT NULL DEFAULT '1', + `creation_date` datetime DEFAULT NULL, + `last_update` datetime DEFAULT NULL, + `last_updated_by` varchar(150) DEFAULT NULL, + PRIMARY KEY (`entity_type`,`entity_value`,`property_type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `properties` +-- + +LOCK TABLES `properties` WRITE; +/*!40000 ALTER TABLE `properties` DISABLE KEYS */; +INSERT INTO `properties` VALUES ('AGENCY','1','AGENCY_EMAIL_COMMUNICATION_DETAILS','{\"replyTo\":[\"tving.advertising@cj.net\"],\"sender\":\"TVING Team \",\"isBlocked\":false,\"cc\":[],\"bcc\":[\"dhiraj.gilda@onlinesales.ai\"],\"adminReviewerDetails\":[{\"name\":\"Vivek Patel\",\"email\":\"vivek.patel@onlinesales.ai\"},{\"name\":\"Ayush Nandanwar\",\"email\":\"ayush.nandanwar@onlinesales.ai\"},{\"name\":\"Dhiraj Gilda\",\"email\":\"dhiraj.gilda@onlinesales.ai\"}],\"marketplaceName\":\"tving-staging\"}',1,'2024-06-10 05:31:56','2024-06-10 05:34:49','staging_rw@172.18.0.1'),('AGENCY','1','AGENCY_METADATA','{\"marketplaceClientId\":1,\"adminUserId\":4661,\"isAccountLimitSetterEnabled\":false,\"neonServiceConfig\":{\"currency\":{\"clientDetailsTagAliases\":[],\"mandatory\":false}},\"agencyId\":1,\"subscribeClientOnTopupRequest\":true,\"agencyName\":\"tving-staging-marketplace\",\"channels\":{},\"contactNumber\":\"9876543210\",\"currencyCode\":\"KRW\",\"reportingCurrencyCode\":\"KRW\",\"goalCountry\":\"south korea\",\"isAutoBaptizerEnabled\":false,\"isFreeTrialDisabled\":true,\"isMonitorEnabled\":true,\"managedChannelsList\":[],\"merchandiseFeedSyncJob\":true,\"steps\":[\"MOLOCO_ACCOUNT_CREATE\"],\"storeType\":\"tving-staging\",\"timezone\":\"Asia/Seoul\",\"billingPlatform\":\"OS\",\"billingPaymentMode\":\"OFFLINE\",\"subscriptionPlanIds\":[\"D08DC4A273CF9EA23F49E8094A8C42FB\"],\"url\":\"https://tving-staging-marketplace.com\",\"runPreflightStepsWithoutOnboardingCompletion\":true,\"loadIntoSolar\":false,\"solrRealTimeUpdateSettings\":{\"isEnabled\":false,\"solrColumnToApiColumnMapping\":{}},\"sokratiShopsConfig\":{\"onboardingType\":\"brandads\",\"isBillingPrepaidEnabled\":true,\"cisPaymentMode\":\"OFFLINE\"},\"osAdsConfig\":{\"remarketingCacheConfig\":{}},\"adServerConfig\":{\"languageCode\":\"en\"},\"audienceBuilderConfig\":{\"enabledChannels\":[\"OS_ADS\"],\"notificationConfig\":{\"cc\":[\"os-data@onlinesales.ai\"],\"isActive\":true,\"receivers\":[\"vijay.bang@onlinesales.ai\"]},\"masterClientId\":1234720,\"dataSource\":{\"S3\":{},\"s3AppKey\":\"OS_S3_MASTER_KEY\"}},\"ean\":{},\"budgetPacingConfiguration\":{\"budgetPacingEnabled\":false,\"defaultPLABudgetDeliveryMode\":\"ACCELERATED\",\"defaultDisplayBudgetDeliveryMode\":\"ACCELERATED\"},\"avgDailyBudgetConfiguration\":{\"avgDailyBudgetEnabled\":false,\"defaultPLABudgetType\":\"DAILY_BUDGET\",\"defaultDisplayBudgetType\":\"DAILY_BUDGET\"},\"agencyUISettings\":{\"osPackageConfiguration\":{\"molocoHadesAppKey\":\"TVING_MOLOCO_STAG_CREDS\",\"validations\":{\"campaignTemplate\":{\"lifetimeFrequency\":{\"min\":1,\"max\":10000},\"dailyFrequency\":{\"min\":1,\"max\":1000},\"budget\":{\"min\":1},\"name\":{\"min\":1,\"max\":200},\"audienceTargeting\":{\"max\":20}},\"package\":{\"name\":{\"max\":200,\"min\":1},\"campaignTemplates\":{\"max\":50,\"min\":1},\"accessControlRules\":{\"max\":100},\"audienceTargeting\":{\"max\":20}},\"booking\":{\"name\":{\"max\":200,\"min\":1},\"description\":{\"max\":1000,\"min\":1},\"dailyBudgetSchedules\":{\"min\":140}},\"creative\":{\"name\":{\"max\":200,\"min\":1},\"description\":{\"max\":1000,\"min\":1},\"creativeConfigurations\":{\"video\":{\"resolutions\":[\"1920x1080\"],\"sizeInBytes\":{\"max\":314572800},\"durationInSec\":{\"max\":200}},\"image\":{\"resolutions\":[\"750x120\",\"1920x160\"],\"sizeInBytes\":{\"max\":1048576},\"validImageTag\":\"TVING_COMPANION_IMAGE\"},\"displayAdImage\":{\"resolutions\":[\"750x122\",\"1920x160\",\"550x190\"],\"sizeInBytes\":{\"max\":1048576},\"validImageTag\":\"TVING_DISPLAY_AD_IMAGE\"}},\"budgetConfigurations\":{\"budgetAllocationPerc\":{\"min\":1,\"max\":100}}}}},\"uploadTypeByMediaType\":{\"IMAGE\":\"MOLOCO_TVING_STAG\",\"VIDEO\":\"MOLOCO_TVING_STAG\",\"FILE\":\"MOLOCO_TVING_STAG\"},\"osAdsAttributionWindow\":\"30_DAY\",\"currencyCode\":\"KRW\",\"timezone\":\"Asia/Seoul\",\"partnerInternalUserDomains\":[],\"internalUserDomains\":[\"@onlinesales.ai\"],\"budgetPacingConfiguration\":{\"budgetPacingEnabled\":false,\"defaultPLABudgetDeliveryMode\":\"ACCELERATED\",\"defaultDisplayBudgetDeliveryMode\":\"ACCELERATED\"},\"avgDailyBudgetConfiguration\":{\"avgDailyBudgetEnabled\":false,\"defaultPLABudgetType\":\"DAILY_BUDGET\",\"defaultDisplayBudgetType\":\"DAILY_BUDGET\"}},\"marketplaceMetaParams\":{\"onboardingParams\":{\"shopOnboardPrefix\":\"tving-staging - \",\"clientNamePrefix\":\"tving-staging-seller \",\"storeType\":\"tvging-staging\",\"clientAliasPattern\":\"__SELLER_NAME__\"}}}',1,'2024-05-21 06:14:26','2024-11-27 10:00:59','staging_rw@172.18.0.1'),('AGENCY','2','AGENCY_EMAIL_COMMUNICATION_DETAILS','{\"replyTo\":[\"tving.advertising@cj.net\"],\"sender\":\"TVING Team \",\"isBlocked\":false,\"cc\":[],\"bcc\":[\"dhiraj.gilda@onlinesales.ai\"],\"adminReviewerDetails\":[{\"name\":\"Vivek Patel\",\"email\":\"vivek.patel@onlinesales.ai\"},{\"name\":\"Ayush Nandanwar\",\"email\":\"ayush.nandanwar@onlinesales.ai\"},{\"name\":\"Dhiraj Gilda\",\"email\":\"dhiraj.gilda@onlinesales.ai\"}],\"marketplaceName\":\"tving-qa\"}',1,'2024-06-10 05:32:02','2024-06-10 05:35:18','staging_rw@172.18.0.1'),('AGENCY','2','AGENCY_METADATA','{\"marketplaceClientId\":13,\"adminUserId\":4661,\"isAccountLimitSetterEnabled\":false,\"neonServiceConfig\":{\"currency\":{\"clientDetailsTagAliases\":[],\"mandatory\":false}},\"agencyId\":2,\"subscribeClientOnTopupRequest\":true,\"agencyName\":\"tving-qa-marketplace\",\"channels\":{},\"contactNumber\":\"9876543210\",\"currencyCode\":\"KRW\",\"reportingCurrencyCode\":\"KRW\",\"goalCountry\":\"south korea\",\"isAutoBaptizerEnabled\":false,\"isFreeTrialDisabled\":true,\"isMonitorEnabled\":true,\"managedChannelsList\":[],\"merchandiseFeedSyncJob\":true,\"steps\":[],\"storeType\":\"tving-qa\",\"timezone\":\"Asia/Seoul\",\"billingPlatform\":\"OS\",\"billingPaymentMode\":\"OFFLINE\",\"subscriptionPlanIds\":[\"D08DC4A273CF9EA23F49E8094A8C42FB\"],\"url\":\"https://tving-qa-marketplace.com\",\"runPreflightStepsWithoutOnboardingCompletion\":true,\"loadIntoSolar\":false,\"solrRealTimeUpdateSettings\":{\"isEnabled\":false,\"solrColumnToApiColumnMapping\":{}},\"sokratiShopsConfig\":{\"onboardingType\":\"brandads\",\"isBillingPrepaidEnabled\":true,\"cisPaymentMode\":\"OFFLINE\"},\"osAdsConfig\":{\"remarketingCacheConfig\":{}},\"adServerConfig\":{\"languageCode\":\"en\"},\"audienceBuilderConfig\":{\"enabledChannels\":[\"OS_ADS\"],\"notificationConfig\":{\"cc\":[\"os-data@onlinesales.ai\"],\"isActive\":true,\"receivers\":[\"vijay.bang@onlinesales.ai\"]},\"masterClientId\":1234720,\"dataSource\":{\"S3\":{},\"s3AppKey\":\"OS_S3_MASTER_KEY\"}},\"ean\":{},\"budgetPacingConfiguration\":{\"budgetPacingEnabled\":false,\"defaultPLABudgetDeliveryMode\":\"ACCELERATED\",\"defaultDisplayBudgetDeliveryMode\":\"ACCELERATED\"},\"avgDailyBudgetConfiguration\":{\"avgDailyBudgetEnabled\":false,\"defaultPLABudgetType\":\"DAILY_BUDGET\",\"defaultDisplayBudgetType\":\"DAILY_BUDGET\"},\"agencyUISettings\":{\"osPackageConfiguration\":{\"molocoHadesAppKey\":\"TVING_QA_MOLOCO_STAG_CREDS\",\"validations\":{\"campaignTemplate\":{\"lifetimeFrequency\":{\"min\":1,\"max\":10000},\"dailyFrequency\":{\"min\":1,\"max\":1000},\"budget\":{\"min\":1},\"name\":{\"min\":1,\"max\":200},\"audienceTargeting\":{\"max\":20}},\"package\":{\"name\":{\"max\":200,\"min\":1},\"campaignTemplates\":{\"max\":50,\"min\":1},\"accessControlRules\":{\"max\":100},\"audienceTargeting\":{\"max\":20}},\"booking\":{\"name\":{\"max\":200,\"min\":1},\"description\":{\"max\":1000,\"min\":1},\"dailyBudgetSchedules\":{\"min\":140}},\"creative\":{\"name\":{\"max\":200,\"min\":1},\"description\":{\"max\":1000,\"min\":1},\"creativeConfigurations\":{\"video\":{\"resolutions\":[\"1920x1080\"],\"sizeInBytes\":{\"max\":314572800},\"durationInSec\":{\"max\":200}},\"image\":{\"resolutions\":[\"750x120\",\"1920x160\"],\"sizeInBytes\":{\"max\":1048576},\"validImageTag\":\"TVING_COMPANION_IMAGE\"},\"displayAdImage\":{\"resolutions\":[\"750x122\",\"1920x160\",\"550x190\"],\"sizeInBytes\":{\"max\":1048576},\"validImageTag\":\"TVING_DISPLAY_AD_IMAGE\"}},\"budgetConfigurations\":{\"budgetAllocationPerc\":{\"min\":1,\"max\":100}}}}},\"uploadTypeByMediaType\":{\"IMAGE\":\"MOLOCO_TVING\",\"VIDEO\":\"MOLOCO_TVING\",\"FILE\":\"MOLOCO_TVING\"},\"osAdsAttributionWindow\":\"30_DAY\",\"currencyCode\":\"KRW\",\"timezone\":\"Asia/Seoul\",\"partnerInternalUserDomains\":[],\"internalUserDomains\":[\"@onlinesales.ai\"],\"budgetPacingConfiguration\":{\"budgetPacingEnabled\":false,\"defaultPLABudgetDeliveryMode\":\"ACCELERATED\",\"defaultDisplayBudgetDeliveryMode\":\"ACCELERATED\"},\"avgDailyBudgetConfiguration\":{\"avgDailyBudgetEnabled\":false,\"defaultPLABudgetType\":\"DAILY_BUDGET\",\"defaultDisplayBudgetType\":\"DAILY_BUDGET\"}},\"marketplaceMetaParams\":{\"onboardingParams\":{\"shopOnboardPrefix\":\"tving-qa - \",\"clientNamePrefix\":\"tving-qa-seller \",\"storeType\":\"tvging-qa\",\"defaultClientAlias\":false}}}',1,'2024-05-23 06:37:53','2024-11-27 10:02:18','staging_rw@172.18.0.1'),('AGENCY','3','AGENCY_EMAIL_COMMUNICATION_DETAILS','{\"replyTo\":[\"sofie@onlinesales.ai\"],\"sender\":\"sofie@onlinesales.ai\",\"isBlocked\":false,\"cc\":[],\"bcc\":[\"shravan.kankaria@onlinesales.ai\"],\"adminReviewerDetails\":[{\"name\":\"Shravan Kankaria\",\"email\":\"shravan.kankaria@onlinesales.ai\"}],\"marketplaceName\":\"rms-staging2-marketplace\"}',1,'2025-04-30 09:19:56','2025-04-30 09:19:56','staging_rw@172.18.0.1'),('AGENCY','384','AGENCY_EMAIL_COMMUNICATION_DETAILS','{\"replyTo\":[\"sofie@onlinesales.ai\"],\"sender\":\"sofie@onlinesales.ai\",\"isBlocked\":false,\"cc\":[],\"bcc\":[\"shravan.kankaria@onlinesales.ai\"],\"adminReviewerDetails\":[{\"name\":\"Shravan Kankaria\",\"email\":\"shravan.kankaria@onlinesales.ai\"}],\"marketplaceName\":\"superbalist-staging\"}',1,'2024-06-20 09:37:11','2024-06-20 09:37:11','staging_rw@172.18.0.1'),('CLIENT','11','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":11,\"marketplaceClientId\":1,\"sellerId\":\"test_hm\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-05-21 12:12:09','2024-05-21 12:12:09','staging_rw@172.18.0.1'),('CLIENT','11','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-05-21 12:12:09','2024-05-21 12:12:09','staging_rw@172.18.0.1'),('CLIENT','11','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-05-21 12:12:09','2024-05-21 12:12:09','staging_rw@172.18.0.1'),('CLIENT','12','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":12,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_ID\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-05-22 04:06:26','2024-05-22 04:06:26','staging_rw@172.18.0.1'),('CLIENT','12','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-05-22 04:06:26','2024-05-22 04:06:26','staging_rw@172.18.0.1'),('CLIENT','12','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-05-22 04:06:26','2024-05-22 04:06:26','staging_rw@172.18.0.1'),('CLIENT','14','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":14,\"marketplaceClientId\":13,\"sellerId\":\"WPSjSway6zxfVZWR\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-05-23 09:50:59','2024-05-23 09:50:59','staging_rw@172.18.0.1'),('CLIENT','14','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-05-23 09:50:59','2024-05-23 09:50:59','staging_rw@172.18.0.1'),('CLIENT','14','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-05-23 09:50:59','2024-05-23 09:50:59','staging_rw@172.18.0.1'),('CLIENT','15','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":15,\"marketplaceClientId\":13,\"sellerId\":\"TEST_SELLER_ID\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-05-28 05:22:02','2024-05-28 05:22:02','staging_rw@172.18.0.1'),('CLIENT','15','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-05-28 05:22:02','2024-05-28 05:22:02','staging_rw@172.18.0.1'),('CLIENT','15','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-05-28 05:22:02','2024-05-28 05:22:02','staging_rw@172.18.0.1'),('CLIENT','16','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":16,\"marketplaceClientId\":13,\"sellerId\":\"NshES5G5u00Zl1xn\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-05-28 05:27:02','2024-05-28 05:27:02','staging_rw@172.18.0.1'),('CLIENT','16','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-05-28 05:27:02','2024-05-28 05:27:02','staging_rw@172.18.0.1'),('CLIENT','16','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-05-28 05:27:02','2024-05-28 05:27:02','staging_rw@172.18.0.1'),('CLIENT','17','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":17,\"marketplaceClientId\":13,\"sellerId\":\"doGNTwiW2MgUKlkz\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-11 05:08:08','2024-06-11 05:08:08','staging_rw@172.18.0.1'),('CLIENT','17','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-11 05:08:08','2024-06-11 05:08:08','staging_rw@172.18.0.1'),('CLIENT','17','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-11 05:08:08','2024-06-11 05:08:08','staging_rw@172.18.0.1'),('CLIENT','18','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":18,\"marketplaceClientId\":13,\"sellerId\":\"MxTCFpKSK3Xoa6Ko\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-11 05:08:08','2024-06-11 05:08:08','staging_rw@172.18.0.1'),('CLIENT','18','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-11 05:08:08','2024-06-11 05:08:08','staging_rw@172.18.0.1'),('CLIENT','18','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-11 05:08:08','2024-06-11 05:08:08','staging_rw@172.18.0.1'),('CLIENT','19','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":19,\"marketplaceClientId\":13,\"sellerId\":\"qOjHBIXIOWpvKkgq\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-11 05:23:08','2024-06-11 05:23:08','staging_rw@172.18.0.1'),('CLIENT','19','MOLOCO::ACCOUNT','[{\"accountName\":\"DMC미디어 (qOjHBIXIOWpvKkgq)\",\"accountId\":\"qOjHBIXIOWpvKkgqC\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',1,'2024-06-28 12:50:37','2024-06-28 12:50:37','staging_rw@172.18.0.1'),('CLIENT','19','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-11 05:23:08','2024-06-11 05:23:08','staging_rw@172.18.0.1'),('CLIENT','19','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-11 05:23:08','2024-06-11 05:23:08','staging_rw@172.18.0.1'),('CLIENT','20','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":20,\"marketplaceClientId\":13,\"sellerId\":\"zw458QHAqFkQDV4f\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-11 05:23:08','2024-06-11 05:23:08','staging_rw@172.18.0.1'),('CLIENT','20','MOLOCO::ACCOUNT','[{\"accountName\":\"인크로스 (zw458QHAqFkQDV4f)\",\"accountId\":\"zw458QHAqFkQDV4f\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',1,'2024-06-28 14:09:43','2024-06-28 14:09:43','staging_rw@172.18.0.1'),('CLIENT','20','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-11 05:23:08','2024-06-11 05:23:08','staging_rw@172.18.0.1'),('CLIENT','20','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-11 05:23:08','2024-06-11 05:23:08','staging_rw@172.18.0.1'),('CLIENT','21','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":21,\"marketplaceClientId\":13,\"sellerId\":\"gIDPPSEomGlEaZyy\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-11 05:23:09','2024-06-11 05:23:09','staging_rw@172.18.0.1'),('CLIENT','21','MOLOCO::ACCOUNT','[{\"accountName\":\"CJ ENM (gIDPPSEomGlEaZyy\",\"accountId\":\"gIDPPSEomGlEaZyy\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',1,'2024-06-28 14:10:16','2024-06-28 14:10:16','staging_rw@172.18.0.1'),('CLIENT','21','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-11 05:23:09','2024-06-11 05:23:09','staging_rw@172.18.0.1'),('CLIENT','21','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-11 05:23:09','2024-06-11 05:23:09','staging_rw@172.18.0.1'),('CLIENT','22','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":22,\"marketplaceClientId\":13,\"sellerId\":\"neuXz1JGmBV2EU0M\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-11 05:37:09','2024-06-11 05:37:09','staging_rw@172.18.0.1'),('CLIENT','22','MOLOCO::ACCOUNT','[{\"accountName\":\"Tving_Inhouse (neuXz1JGmBV2EU0M)\",\"accountId\":\"neuXz1JGmBV2EU0M\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',1,'2024-06-28 14:10:58','2024-06-28 14:10:58','staging_rw@172.18.0.1'),('CLIENT','22','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-11 05:37:09','2024-06-11 05:37:09','staging_rw@172.18.0.1'),('CLIENT','22','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-11 05:37:09','2024-06-11 05:37:09','staging_rw@172.18.0.1'),('CLIENT','23','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":23,\"marketplaceClientId\":13,\"sellerId\":\"IJ3E5byMo8XmiQO8\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','23','MOLOCO::ACCOUNT','[{\"accountName\":\"삼성전자_수정 테스트 (IJ3E5byMo8XmiQO8) \",\"accountId\":\"IJ3E5byMo8XmiQO8\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',1,'2024-06-28 14:11:19','2024-06-28 14:11:19','staging_rw@172.18.0.1'),('CLIENT','23','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','23','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','24','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":24,\"marketplaceClientId\":13,\"sellerId\":\"C8PyyFevOyDK03bS\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','24','MOLOCO::ACCOUNT','[{\"accountName\":\"제일기획 (C8PyyFevOyDK03bS)\",\"accountId\":\"C8PyyFevOyDK03bS\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',1,'2024-06-28 14:11:43','2024-06-28 14:11:43','staging_rw@172.18.0.1'),('CLIENT','24','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','24','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','25','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":25,\"marketplaceClientId\":13,\"sellerId\":\"a4jim0PxlEeizrJN\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','25','MOLOCO::ACCOUNT','[{\"accountName\":\"펑타이 (a4jim0PxlEeizrJN)\",\"accountId\":\"a4jim0PxlEeizrJN\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',1,'2024-06-28 14:12:08','2024-06-28 14:12:08','staging_rw@172.18.0.1'),('CLIENT','25','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','25','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','26','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":26,\"marketplaceClientId\":13,\"sellerId\":\"lPNjSDdMJfDOITKg\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','26','MOLOCO::ACCOUNT','[{\"accountName\":\"메조미디어 (lPNjSDdMJfDOITKg)\",\"accountId\":\"lPNjSDdMJfDOITKg\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',1,'2024-06-28 14:12:37','2024-06-28 14:13:52','staging_rw@172.18.0.1'),('CLIENT','26','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','26','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-13 06:03:26','2024-06-13 06:03:26','staging_rw@172.18.0.1'),('CLIENT','27','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":27,\"marketplaceClientId\":13,\"sellerId\":\"hyTMsxI0irU0cAdT\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-14 08:00:06','2024-06-14 08:00:06','staging_rw@172.18.0.1'),('CLIENT','27','MOLOCO::ACCOUNT','[{\"accountName\":\"TVING_QA_Practice (hyTMsxI0irU0cAdT)\",\"accountId\":\"hyTMsxI0irU0cAdT\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',1,'2024-06-28 14:13:45','2024-06-28 14:13:45','staging_rw@172.18.0.1'),('CLIENT','27','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-14 08:00:06','2024-06-14 08:00:06','staging_rw@172.18.0.1'),('CLIENT','27','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-14 08:00:06','2024-06-14 08:00:06','staging_rw@172.18.0.1'),('CLIENT','28','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":28,\"marketplaceClientId\":1,\"sellerId\":\"Vxb3oZyytPEwcjkX\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-17 10:04:14','2024-06-17 10:04:14','staging_rw@172.18.0.1'),('CLIENT','28','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-17 10:04:14','2024-06-17 10:04:14','staging_rw@172.18.0.1'),('CLIENT','28','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-17 10:04:14','2024-06-17 10:04:14','staging_rw@172.18.0.1'),('CLIENT','29','COMMENT_SVC_NOTIFICATION','{\"lastSentTimeStamp\":1734494332875,\"notificationCount\":50}',1,'2024-10-04 13:55:27','2024-12-18 03:58:52','staging_rw@172.18.0.1'),('CLIENT','29','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":29,\"marketplaceClientId\":1,\"sellerId\":\"cbT7wcJjR6e6Ide5\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-06-21 06:42:41','2024-06-21 06:42:41','staging_rw@172.18.0.1'),('CLIENT','29','MOLOCO::ACCOUNT','[{\"accountName\":\"AD_ACCOUNT_DEV (cbT7wcJjR6e6Ide5)\",\"accountId\":\"cbT7wcJjR6e6Ide5\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',1,'2024-06-21 11:48:38','2024-06-21 11:48:38','staging_rw@172.18.0.1'),('CLIENT','29','NOTIFICATIONS_TRIGGER_CONFIG','[{\"configMap\":{\"COMMENT_SVC_NOTIFICATION\":{\"statusType\":\"INACTIVE\",\"notificationsConfig\":[{\"notificationType\":\"EMAIL\",\"severity\":\"HIGH\",\"template\":\"TVING_COMMENT_SVC_TEMPLATE\",\"requiredParams\":[\"commentDetails\",\"entityLevelId\",\"CLIENT_ID\"],\"statusType\":\"INACTIVE\",\"enabledForAgencies\":[1],\"metaData\":{\"addShopData\":\"false\",\"adUtilsMethod\":\"true\",\"addUserData\":\"false\",\"isClientLevelNotification\":\"false\",\"receivers\":\"[\\\"ayush.nandanwar+tving@onlinesales.ai\\\"]\",\"subjectTemplate\":\"You got new comment on order name ${bookingDetails.name}\",\"senderEmail\":\"Sofie Test \"},\"ftlUtilParams\":{\"bookingDetails\":{\"function\":\"getOmsBookingDetails\",\"args\":\"[\\\"AGENCY_ID\\\",\\\"entityLevelId\\\",\\\"CLIENT_ID\\\"]\"}}}]}},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.NotificationsTriggerConfig\"}]',0,'2024-10-01 14:13:24','2024-10-04 13:45:49','staging_rw@172.18.0.1'),('CLIENT','29','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-06-21 06:42:41','2024-06-21 06:42:41','staging_rw@172.18.0.1'),('CLIENT','29','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-06-21 06:42:41','2024-06-21 06:42:41','staging_rw@172.18.0.1'),('CLIENT','30','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":30,\"marketplaceClientId\":1,\"sellerId\":\"35496053\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-12 07:08:50','2024-07-12 07:08:50','staging_rw@172.18.0.1'),('CLIENT','30','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-12 07:08:50','2024-07-12 07:08:50','staging_rw@172.18.0.1'),('CLIENT','30','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-12 07:08:50','2024-07-12 07:08:50','staging_rw@172.18.0.1'),('CLIENT','31','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":31,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_ID2\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-30 10:43:27','2024-07-30 10:43:27','staging_rw@172.18.0.1'),('CLIENT','31','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-30 10:43:27','2024-07-30 10:43:27','staging_rw@172.18.0.1'),('CLIENT','31','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-30 10:43:27','2024-07-30 10:43:27','staging_rw@172.18.0.1'),('CLIENT','32','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":32,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_ID3\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-30 13:20:20','2024-07-30 13:20:20','staging_rw@172.18.0.1'),('CLIENT','32','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-30 13:20:20','2024-07-30 13:20:20','staging_rw@172.18.0.1'),('CLIENT','32','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-30 13:20:20','2024-07-30 13:20:20','staging_rw@172.18.0.1'),('CLIENT','33','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":33,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_ID4\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-30 13:28:08','2024-07-30 13:28:08','staging_rw@172.18.0.1'),('CLIENT','33','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-30 13:28:08','2024-07-30 13:28:08','staging_rw@172.18.0.1'),('CLIENT','33','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-30 13:28:08','2024-07-30 13:28:08','staging_rw@172.18.0.1'),('CLIENT','34','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":34,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_ID5\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-30 13:35:57','2024-07-30 13:35:57','staging_rw@172.18.0.1'),('CLIENT','34','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-30 13:35:57','2024-07-30 13:35:57','staging_rw@172.18.0.1'),('CLIENT','34','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-30 13:35:57','2024-07-30 13:35:57','staging_rw@172.18.0.1'),('CLIENT','35','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":35,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_ID6\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-30 13:55:43','2024-07-30 13:55:43','staging_rw@172.18.0.1'),('CLIENT','35','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-30 13:55:43','2024-07-30 13:55:43','staging_rw@172.18.0.1'),('CLIENT','35','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-30 13:55:43','2024-07-30 13:55:43','staging_rw@172.18.0.1'),('CLIENT','36','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":36,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_ID7\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-31 06:05:57','2024-07-31 06:05:57','staging_rw@172.18.0.1'),('CLIENT','36','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-31 06:05:57','2024-07-31 06:05:57','staging_rw@172.18.0.1'),('CLIENT','36','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-31 06:05:57','2024-07-31 06:05:57','staging_rw@172.18.0.1'),('CLIENT','37','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":37,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_ID8\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-31 06:09:38','2024-07-31 06:09:38','staging_rw@172.18.0.1'),('CLIENT','37','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-31 06:09:38','2024-07-31 06:09:38','staging_rw@172.18.0.1'),('CLIENT','37','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-31 06:09:38','2024-07-31 06:09:38','staging_rw@172.18.0.1'),('CLIENT','38','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":38,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_ID9\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-31 06:13:25','2024-07-31 06:13:25','staging_rw@172.18.0.1'),('CLIENT','38','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-31 06:13:25','2024-07-31 06:13:25','staging_rw@172.18.0.1'),('CLIENT','38','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-31 06:13:25','2024-07-31 06:13:25','staging_rw@172.18.0.1'),('CLIENT','39','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":39,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_ID10\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-31 07:22:37','2024-07-31 07:22:37','staging_rw@172.18.0.1'),('CLIENT','39','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-31 07:22:37','2024-07-31 07:22:37','staging_rw@172.18.0.1'),('CLIENT','39','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-31 07:22:37','2024-07-31 07:22:37','staging_rw@172.18.0.1'),('CLIENT','40','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":40,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_ID11\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-31 07:24:37','2024-07-31 07:24:37','staging_rw@172.18.0.1'),('CLIENT','40','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-31 07:24:37','2024-07-31 07:24:37','staging_rw@172.18.0.1'),('CLIENT','40','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-31 07:24:37','2024-07-31 07:24:37','staging_rw@172.18.0.1'),('CLIENT','41','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":41,\"marketplaceClientId\":1,\"sellerId\":\"API_TEST1\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-07-31 09:12:24','2024-07-31 09:12:24','staging_rw@172.18.0.1'),('CLIENT','41','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-07-31 09:12:24','2024-07-31 09:12:24','staging_rw@172.18.0.1'),('CLIENT','41','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-07-31 09:12:24','2024-07-31 09:12:24','staging_rw@172.18.0.1'),('CLIENT','414','EVENT_PRODUCER_CONFIG','[{\"configData\":{\"MOLOCO::ACCOUNT\":[{\"saveInDb\":true,\"eventType\":\"account_update\",\"isEnabled\":true,\"expirationHours\":2,\"isSnapshotEventEnabled\":true}]},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.EventProducerConfig\"}]',1,'2024-06-21 12:35:49','2024-06-21 12:35:49','staging_rw@172.18.0.1'),('CLIENT','414','NOTIFICATIONS_TRIGGER_CONFIG','[{\"configMap\":{\"COMMENT_SVC_NOTIFICATION\":{\"statusType\":\"ACTIVE\",\"notificationsConfig\":[{\"notificationType\":\"EMAIL\",\"severity\":\"HIGH\",\"template\":\"TVING_COMMENT_SVC_TEMPLATE\",\"requiredParams\":[\"entityLevelType\",\"hadesEntityId\",\"commentData\",\"entityLevelId\",\"CLIENT_ID\",\"entityType\",\"entityId\",\"hadesEntityType\"],\"statusType\":\"ACTIVE\",\"enabledForAgencies\":[1],\"metaData\":{\"addShopData\":\"false\",\"addUserData\":\"false\",\"isClientLevelNotification\":\"true\",\"receivers\":\"[\\\"ayush.nandanwar+tving@onlinesales.ai\\\",\\\"niraj.vadher+tving@onlinesales.ai\\\"]\",\"subjectTemplate\":\"주문에 대한 새로운 댓글 - ${bookingDetails.name}\",\"senderEmail\":\"Tving - Dev \"},\"ftlUtilParams\":{\"bookingDetails\":{\"function\":\"getOmsBookingDetails\",\"args\":\"[\\\"AGENCY_ID\\\",\\\"entityLevelId\\\",\\\"CLIENT_ID\\\"]\"}}}]}},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.NotificationsTriggerConfig\"}]',1,'2024-10-04 12:30:17','2024-10-17 11:50:05','staging_rw@172.18.0.1'),('CLIENT','42','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":42,\"marketplaceClientId\":1,\"sellerId\":\"API_TEST2\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-08-07 08:11:01','2024-08-07 08:11:01','staging_rw@172.18.0.1'),('CLIENT','42','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-08-07 08:11:01','2024-08-07 08:11:01','staging_rw@172.18.0.1'),('CLIENT','42','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-08-07 08:11:01','2024-08-07 08:11:01','staging_rw@172.18.0.1'),('CLIENT','43','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":43,\"marketplaceClientId\":1,\"sellerId\":\"API_TEST3\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-08-07 08:16:35','2024-08-07 08:16:35','staging_rw@172.18.0.1'),('CLIENT','43','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-08-07 08:16:35','2024-08-07 08:16:35','staging_rw@172.18.0.1'),('CLIENT','43','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-08-07 08:16:35','2024-08-07 08:16:35','staging_rw@172.18.0.1'),('CLIENT','44','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":44,\"marketplaceClientId\":1,\"sellerId\":\"API_TEST4\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-08-12 05:47:15','2024-08-12 05:47:15','staging_rw@172.18.0.1'),('CLIENT','44','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-08-12 05:47:15','2024-08-12 05:47:15','staging_rw@172.18.0.1'),('CLIENT','44','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-08-12 05:47:15','2024-08-12 05:47:15','staging_rw@172.18.0.1'),('CLIENT','45','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":45,\"marketplaceClientId\":1,\"sellerId\":\"API_TEST5\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-08-12 05:51:19','2024-08-12 05:51:19','staging_rw@172.18.0.1'),('CLIENT','45','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-08-12 05:51:19','2024-08-12 05:51:19','staging_rw@172.18.0.1'),('CLIENT','45','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-08-12 05:51:19','2024-08-12 05:51:19','staging_rw@172.18.0.1'),('CLIENT','46','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":46,\"marketplaceClientId\":1,\"sellerId\":\"Sh2UqYwhmyTKEAQk\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-10-14 09:15:00','2024-10-14 09:15:00','staging_rw@172.18.0.1'),('CLIENT','46','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-10-14 09:15:00','2024-10-14 09:15:00','staging_rw@172.18.0.1'),('CLIENT','46','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-10-14 09:15:00','2024-10-14 09:15:00','staging_rw@172.18.0.1'),('CLIENT','47','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":47,\"marketplaceClientId\":1,\"sellerId\":\"dafs_dagda\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-10-14 09:59:04','2024-10-14 09:59:04','staging_rw@172.18.0.1'),('CLIENT','47','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-10-14 09:59:04','2024-10-14 09:59:04','staging_rw@172.18.0.1'),('CLIENT','47','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-10-14 09:59:04','2024-10-14 09:59:04','staging_rw@172.18.0.1'),('CLIENT','48','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":48,\"marketplaceClientId\":1,\"sellerId\":\"igaiagicd2\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-10-14 10:00:04','2024-10-14 10:00:04','staging_rw@172.18.0.1'),('CLIENT','48','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-10-14 10:00:04','2024-10-14 10:00:04','staging_rw@172.18.0.1'),('CLIENT','48','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-10-14 10:00:04','2024-10-14 10:00:04','staging_rw@172.18.0.1'),('CLIENT','49','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":49,\"marketplaceClientId\":1,\"sellerId\":\"igaiagicd\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-10-14 10:03:05','2024-10-14 10:03:05','staging_rw@172.18.0.1'),('CLIENT','49','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-10-14 10:03:05','2024-10-14 10:03:05','staging_rw@172.18.0.1'),('CLIENT','49','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-10-14 10:03:05','2024-10-14 10:03:05','staging_rw@172.18.0.1'),('CLIENT','50','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":50,\"marketplaceClientId\":1,\"sellerId\":\"igaiagicd21\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-10-14 12:21:13','2024-10-14 12:21:13','staging_rw@172.18.0.1'),('CLIENT','50','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-10-14 12:21:13','2024-10-14 12:21:13','staging_rw@172.18.0.1'),('CLIENT','50','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-10-14 12:21:13','2024-10-14 12:21:13','staging_rw@172.18.0.1'),('CLIENT','51','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":51,\"marketplaceClientId\":1,\"sellerId\":\"test_seller_korean\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-10-28 05:37:24','2024-10-28 05:37:24','staging_rw@172.18.0.1'),('CLIENT','51','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-10-28 05:37:24','2024-10-28 05:37:24','staging_rw@172.18.0.1'),('CLIENT','51','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-10-28 05:37:24','2024-10-28 05:37:24','staging_rw@172.18.0.1'),('CLIENT','52','MARKETPLACE_SELLER_CLIENT_MAPPING','[{\"sellerClientId\":52,\"marketplaceClientId\":1,\"sellerId\":\"TEST_SELLER_DOWN\",\"isOsLite\":false,\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MarketplaceSellerClientMapping\"}]',1,'2024-12-09 05:29:57','2024-12-09 05:29:57','staging_rw@172.18.0.1'),('CLIENT','52','PAYMENT_MODE','[{\"paymentMode\":\"OFFLINE\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.PaymentMode\"}]',1,'2024-12-09 05:29:57','2024-12-09 05:29:57','staging_rw@172.18.0.1'),('CLIENT','52','SUGGESTION_AUTO_ACCEPT_CONFIG','[{\"isAutoAccept\":true,\"autoAcceptOptimizerTypes\":{\"searchQueryPositive\":true,\"autoGoalOptimizer\":true,\"crossChannelbudgetOptimizer\":true,\"adRefreshOptimizer\":true,\"osGoalChannelOptimizer\":true,\"timeOfDayOptimizer\":true,\"budgetOptimizer\":true,\"bidOptimizer\":true,\"cpaOptimizer\":true,\"impressionShareOptimizer\":true,\"deviceOptimizer\":true,\"fbAgeSegmentOptimizer\":true,\"crossGoalOptimizer\":true,\"hyperlocalFbReachDataOptimizer\":true,\"osGoalObjectiveOptimizer\":true,\"googlePlacementNegative\":true,\"searchQueryNegative\":true,\"lsvOptimizer\":true,\"adQualityOptimizer\":true},\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.SuggestionAutoAcceptConfig\"}]',1,'2024-12-09 05:29:57','2024-12-09 05:29:57','staging_rw@172.18.0.1'),('CLIENT','7','MOLOCO::ACCOUNT','[{\"accountName\":\"tving-staging-seller WPSjSway6zxfVZWR\",\"accountId\":\"WPSjSway6zxfVZWR\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',0,'2024-06-13 15:01:47','2025-02-13 11:01:04','staging_rw@172.18.0.1'),('CLIENT','8','MOLOCO::ACCOUNT','[{\"accountName\":\"tving-staging-seller F3ic8Ba9cma45x2J\",\"accountId\":\"F3ic8Ba9cma45x2J\",\"vendor\":\"MOLOCO\",\"isActive\":true,\"owner\":\"ONLINESALES\",\"masterAccountStatus\":\"NA\",\"isManagedByOs\":true,\"timeZone\":\"Asia/Seoul\",\"currency\":\"KRW\",\"@class\":\"com.sokrati.clientInputSvcObjects.parameter.MolocoAccount\"}]',1,'2024-06-13 15:07:19','2024-06-13 15:07:19','staging_rw@172.18.0.1'),('SERVICE','LSS','LSS_CLASS_TO_KEY_MAP','{\"com.sokrati.marCamDbSvcObjects.data.Campaign\":\"Campaign\", \"com.sokrati.sokratiShopsSvcObjects.data.Shop\": \"Shop\",\"com.sokrati.clientInputSvcObjects.parameter.ShopsClientMetaData\": \"ShopsClientMetaData\", \"com.sokrati.marCamDbSvcObjects.data.CampaignMerchandise\":\"CampaignMerchandise\", \"com.sokrati.marCamDbSvcObjects.data.CampaignChannel\": \"CampaignChannel\",\"com.sokrati.marCamDbSvcObjects.data.CampaignBudget\":\"CampaignBudget\", \"com.sokrati.marCamDbSvcObjects.data.CampaignObjectiveType\" : \"CampaignObjectiveType\", \"com.sokrati.clientInputSvcObjects.parameter.LauncherConfig\" : \"LauncherConfig\"}',1,'2024-05-20 13:10:11','2024-05-20 13:10:11','staging_rw@172.18.0.1'); +/*!40000 ALTER TABLE `properties` ENABLE KEYS */; +UNLOCK TABLES; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = utf8mb4 */ ; +/*!50003 SET character_set_results = utf8mb4 */ ; +/*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER `properties_insert_trigger` BEFORE INSERT ON `properties` FOR EACH ROW BEGIN + SET NEW.creation_date=NOW(); + SET NEW.last_updated_by=USER(); + SET NEW.last_update=NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = utf8mb4 */ ; +/*!50003 SET character_set_results = utf8mb4 */ ; +/*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER `properties_update_trigger` BEFORE UPDATE ON `properties` FOR EACH ROW BEGIN + SET NEW.last_updated_by=USER(); + SET NEW.last_update = NOW(); +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; + +-- +-- Table structure for table `schema_info` +-- + +DROP TABLE IF EXISTS `schema_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `schema_info` ( + `db_name` varchar(50) NOT NULL, + `version` varchar(50) NOT NULL, + `filename` varchar(250) DEFAULT NULL, + `run_date` datetime DEFAULT NULL, + `status` varchar(50) DEFAULT NULL, + PRIMARY KEY (`db_name`,`version`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `schema_info` +-- + +LOCK TABLES `schema_info` WRITE; +/*!40000 ALTER TABLE `schema_info` DISABLE KEYS */; +INSERT INTO `schema_info` VALUES ('property_settings_db_v2','000','/usr/local/onlinesales/propertySettingsSvcV2/sql/property_settings_db/000_create_property_settings_db.sql','2024-05-20 10:22:47','success'),('property_settings_db_v2','001','/usr/local/onlinesales/propertySettingsSvcV2/sql/property_settings_db/001_properties_table.sql','2024-05-20 10:22:47','success'),('property_settings_db_v2','002','/usr/local/onlinesales/propertySettingsSvcV2/sql/property_settings_db/002_populate_properties_table.sql','2024-05-20 10:22:47','success'),('property_settings_db_v2','003','/usr/local/onlinesales/propertySettingsSvcV2/sql/property_settings_db/003_alter_column_property_value.sql','2024-05-20 10:22:48','success'); +/*!40000 ALTER TABLE `schema_info` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2025-12-10 7:12:58 diff --git a/property-settings-svc-v2-chart/templates/NOTES.txt b/property-settings-svc-v2-chart/templates/NOTES.txt new file mode 100644 index 0000000..a8f9bee --- /dev/null +++ b/property-settings-svc-v2-chart/templates/NOTES.txt @@ -0,0 +1,35 @@ +1. Get the application URL by running these commands: +{{- if .Values.httpRoute.enabled }} +{{- if .Values.httpRoute.hostnames }} + export APP_HOSTNAME={{ .Values.httpRoute.hostnames | first }} +{{- else }} + export APP_HOSTNAME=$(kubectl get --namespace {{(first .Values.httpRoute.parentRefs).namespace | default .Release.Namespace }} gateway/{{ (first .Values.httpRoute.parentRefs).name }} -o jsonpath="{.spec.listeners[0].hostname}") + {{- end }} +{{- if and .Values.httpRoute.rules (first .Values.httpRoute.rules).matches (first (first .Values.httpRoute.rules).matches).path.value }} + echo "Visit http://$APP_HOSTNAME{{ (first (first .Values.httpRoute.rules).matches).path.value }} to use your application" + + NOTE: Your HTTPRoute depends on the listener configuration of your gateway and your HTTPRoute rules. + The rules can be set for path, method, header and query parameters. + You can check the gateway configuration with 'kubectl get --namespace {{(first .Values.httpRoute.parentRefs).namespace | default .Release.Namespace }} gateway/{{ (first .Values.httpRoute.parentRefs).name }} -o yaml' +{{- end }} +{{- else if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "property-settings-svc-v2-chart.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch its status by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "property-settings-svc-v2-chart.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "property-settings-svc-v2-chart.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "property-settings-svc-v2-chart.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT +{{- end }} diff --git a/property-settings-svc-v2-chart/templates/_db-helpers.tpl b/property-settings-svc-v2-chart/templates/_db-helpers.tpl new file mode 100644 index 0000000..74bd25c --- /dev/null +++ b/property-settings-svc-v2-chart/templates/_db-helpers.tpl @@ -0,0 +1,61 @@ +{{/* +Database host +*/}} +{{- define "property-settings-svc-v2-chart.databaseHost" -}} +{{- if .Values.mysql.enabled -}} +{{- printf "%s-mysql" .Release.Name -}} +{{- else -}} +{{- .Values.externalDatabase.host -}} +{{- end -}} +{{- end -}} + +{{/* +Database port +*/}} +{{- define "property-settings-svc-v2-chart.databasePort" -}} +{{- if .Values.mysql.enabled -}} +3306 +{{- else -}} +{{- .Values.externalDatabase.port -}} +{{- end -}} +{{- end -}} + +{{/* +Database name +*/}} +{{- define "property-settings-svc-v2-chart.databaseName" -}} +{{- if .Values.mysql.enabled -}} +{{- .Values.mysql.mysqlDatabase -}} +{{- else -}} +{{- .Values.externalDatabase.database -}} +{{- end -}} +{{- end -}} + +{{/* +Database username +*/}} +{{- define "property-settings-svc-v2-chart.databaseUsername" -}} +{{- if .Values.mysql.enabled -}} +{{- .Values.mysql.mysqlUser -}} +{{- else -}} +{{- .Values.externalDatabase.username -}} +{{- end -}} +{{- end -}} + +{{/* +Database password +*/}} +{{- define "property-settings-svc-v2-chart.databasePassword" -}} +{{- if .Values.mysql.enabled -}} +{{- .Values.mysql.mysqlPassword -}} +{{- else -}} +{{- .Values.externalDatabase.password -}} +{{- end -}} +{{- end -}} + +{{/* +Database JDBC URL +*/}} +{{- define "property-settings-svc-v2-chart.databaseJdbcUrl" -}} +{{- printf "jdbc:mysql://%s:%s/%s?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&" (include "property-settings-svc-v2-chart.databaseHost" .) (include "property-settings-svc-v2-chart.databasePort" .) (include "property-settings-svc-v2-chart.databaseName" .) -}} +{{- end -}} diff --git a/property-settings-svc-v2-chart/templates/_helpers.tpl b/property-settings-svc-v2-chart/templates/_helpers.tpl new file mode 100644 index 0000000..7fc2871 --- /dev/null +++ b/property-settings-svc-v2-chart/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "property-settings-svc-v2-chart.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "property-settings-svc-v2-chart.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "property-settings-svc-v2-chart.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "property-settings-svc-v2-chart.labels" -}} +helm.sh/chart: {{ include "property-settings-svc-v2-chart.chart" . }} +{{ include "property-settings-svc-v2-chart.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "property-settings-svc-v2-chart.selectorLabels" -}} +app.kubernetes.io/name: {{ include "property-settings-svc-v2-chart.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "property-settings-svc-v2-chart.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "property-settings-svc-v2-chart.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/property-settings-svc-v2-chart/templates/configmap-sql-migrations.yaml b/property-settings-svc-v2-chart/templates/configmap-sql-migrations.yaml new file mode 100644 index 0000000..6e98b89 --- /dev/null +++ b/property-settings-svc-v2-chart/templates/configmap-sql-migrations.yaml @@ -0,0 +1,13 @@ +{{- if .Values.dbInit.enabled }} +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "property-settings-svc-v2-chart.fullname" . }}-sql-migrations + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 4 }} + app.kubernetes.io/component: dbinit +binaryData: +{{- range $path, $_ := .Files.Glob "sql/004_property_settings_db*.sql" }} + {{ base $path }}: {{ $.Files.Get $path | b64enc | quote }} +{{- end }} +{{- end }} diff --git a/property-settings-svc-v2-chart/templates/configmap.yaml b/property-settings-svc-v2-chart/templates/configmap.yaml new file mode 100644 index 0000000..51ac305 --- /dev/null +++ b/property-settings-svc-v2-chart/templates/configmap.yaml @@ -0,0 +1,88 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "property-settings-svc-v2-chart.fullname" . }}-config + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 4 }} +data: + propertySettingsService.cfg: | + { + prod: { + log_config: "{{ .Values.config.propertySettingsService.prod.logConfig }}", + property_settings_db_hibernate_config: "{{ .Values.config.propertySettingsService.prod.hibernateConfig }}", + rest_accessor_config_file: "{{ .Values.config.propertySettingsService.prod.restAccessorConfig }}", + }, + test: { + log_config: "{{ .Values.config.propertySettingsService.test.logConfig }}", + property_settings_db_hibernate_config: "{{ .Values.config.propertySettingsService.test.hibernateConfig }}", + rest_accessor_config_file: "{{ .Values.config.propertySettingsService.test.restAccessorConfig }}", + } + } + log.cfg: | +{{ .Values.config.log | indent 4 }} + prodRestAccessor.cfg: | + { + "post_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "post", + "response": "com.sokrati.propertySettingsSvcObjectsV2.PostPropertiesResponse" + }, + "get_all_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "get", + "response": "com.sokrati.propertySettingsSvcObjectsV2.GetPropertiesResponse" + }, + "get_best_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "get", + "response": "com.sokrati.propertySettingsSvcObjectsV2.GetPropertiesResponse" + }, + "fetch_context": + { + {{- if .Values.traefik.enabled }} + "url": "{{ .Values.traefik.hadesUrl }}/hadesV2/context", + {{- else }} + "url": "http://hades.hades.svc.cluster.local:8080/hadesV2/context", + {{- end }} + "type": "get", + "response": "com.sokrati.hadesObjects.ContextResponse" + } + } + testRestAccessor.cfg: | + { + "post_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "post", + "response": "com.sokrati.propertySettingsSvcObjectsV2.PostPropertiesResponse" + }, + "get_all_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "get", + "response": "com.sokrati.propertySettingsSvcObjectsV2.GetPropertiesResponse" + }, + "get_best_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "get", + "response": "com.sokrati.propertySettingsSvcObjectsV2.GetPropertiesResponse" + }, + "fetch_context": + { + {{- if .Values.traefik.enabled }} + "url": "{{ .Values.traefik.hadesUrl }}/hadesV2/context", + {{- else }} + "url": "http://hades.hades.svc.cluster.local:8080/hadesV2/context", + {{- end }} + "type": "get", + "response": "com.sokrati.hadesObjects.ContextResponse" + } + } + authConfig.cfg: | +{{ .Values.config.auth | indent 4 }} + statsLogging.cfg: | +{{ .Values.config.statsLogging | indent 4 }} diff --git a/property-settings-svc-v2-chart/templates/deployment.yaml b/property-settings-svc-v2-chart/templates/deployment.yaml new file mode 100644 index 0000000..7509c9a --- /dev/null +++ b/property-settings-svc-v2-chart/templates/deployment.yaml @@ -0,0 +1,93 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "property-settings-svc-v2-chart.fullname" . }} + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 4 }} +spec: + {{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} + {{- end }} + selector: + matchLabels: + {{- include "property-settings-svc-v2-chart.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 8 }} + {{- with .Values.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "property-settings-svc-v2-chart.serviceAccountName" . }} + {{- with .Values.podSecurityContext }} + securityContext: + {{- toYaml . | nindent 8 }} + {{- end }} + containers: + - name: {{ .Chart.Name }} + {{- with .Values.securityContext }} + securityContext: + {{- toYaml . | nindent 12 }} + {{- end }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + env: + - name: APP_ENV + value: {{ .Values.appEnv | default "test" }} + ports: + - name: http + containerPort: {{ .Values.service.port }} + protocol: TCP + {{- with .Values.livenessProbe }} + livenessProbe: + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.readinessProbe }} + readinessProbe: + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.resources }} + resources: + {{- toYaml . | nindent 12 }} + {{- end }} + volumeMounts: + - name: config + mountPath: /etc/onlinesales/config/propertySettingsSvcV2 + readOnly: true + - name: db-config + mountPath: /etc/onlinesales/db + readOnly: true + {{- with .Values.volumeMounts }} + {{- toYaml . | nindent 12 }} + {{- end }} + volumes: + - name: config + configMap: + name: {{ include "property-settings-svc-v2-chart.fullname" . }}-config + - name: db-config + secret: + secretName: {{ include "property-settings-svc-v2-chart.fullname" . }}-db-config + {{- with .Values.volumes }} + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/property-settings-svc-v2-chart/templates/hpa.yaml b/property-settings-svc-v2-chart/templates/hpa.yaml new file mode 100644 index 0000000..95fd5bb --- /dev/null +++ b/property-settings-svc-v2-chart/templates/hpa.yaml @@ -0,0 +1,32 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "property-settings-svc-v2-chart.fullname" . }} + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "property-settings-svc-v2-chart.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/property-settings-svc-v2-chart/templates/httproute.yaml b/property-settings-svc-v2-chart/templates/httproute.yaml new file mode 100644 index 0000000..1deccb1 --- /dev/null +++ b/property-settings-svc-v2-chart/templates/httproute.yaml @@ -0,0 +1,38 @@ +{{- if .Values.httpRoute.enabled -}} +{{- $fullName := include "property-settings-svc-v2-chart.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ $fullName }} + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 4 }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + parentRefs: + {{- with .Values.httpRoute.parentRefs }} + {{- toYaml . | nindent 4 }} + {{- end }} + {{- with .Values.httpRoute.hostnames }} + hostnames: + {{- toYaml . | nindent 4 }} + {{- end }} + rules: + {{- range .Values.httpRoute.rules }} + {{- with .matches }} + - matches: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .filters }} + filters: + {{- toYaml . | nindent 8 }} + {{- end }} + backendRefs: + - name: {{ $fullName }} + port: {{ $svcPort }} + weight: 1 + {{- end }} +{{- end }} diff --git a/property-settings-svc-v2-chart/templates/ingress.yaml b/property-settings-svc-v2-chart/templates/ingress.yaml new file mode 100644 index 0000000..558e506 --- /dev/null +++ b/property-settings-svc-v2-chart/templates/ingress.yaml @@ -0,0 +1,43 @@ +{{- if .Values.ingress.enabled -}} +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: {{ include "property-settings-svc-v2-chart.fullname" . }} + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- with .Values.ingress.className }} + ingressClassName: {{ . }} + {{- end }} + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ .path }} + {{- with .pathType }} + pathType: {{ . }} + {{- end }} + backend: + service: + name: {{ include "property-settings-svc-v2-chart.fullname" $ }} + port: + number: {{ $.Values.service.port }} + {{- end }} + {{- end }} +{{- end }} diff --git a/property-settings-svc-v2-chart/templates/job-dbinit.yaml b/property-settings-svc-v2-chart/templates/job-dbinit.yaml new file mode 100644 index 0000000..d4249f0 --- /dev/null +++ b/property-settings-svc-v2-chart/templates/job-dbinit.yaml @@ -0,0 +1,130 @@ +{{- if .Values.dbInit.enabled }} +apiVersion: batch/v1 +kind: Job +metadata: + name: {{ include "property-settings-svc-v2-chart.fullname" . }}-dbinit + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 4 }} + app.kubernetes.io/component: dbinit + annotations: + "helm.sh/hook": post-install,post-upgrade + "helm.sh/hook-weight": "-5" + "helm.sh/hook-delete-policy": before-hook-creation +spec: + backoffLimit: 5 + ttlSecondsAfterFinished: 300 + template: + metadata: + labels: + app.kubernetes.io/component: dbinit + {{- include "property-settings-svc-v2-chart.selectorLabels" . | nindent 8 }} + spec: + restartPolicy: OnFailure + initContainers: + # Wait for MySQL to be ready + - name: wait-for-db + image: busybox:1.36 + command: + - sh + - -c + - | + echo "Waiting for database to be ready..." + until nc -z {{ include "property-settings-svc-v2-chart.databaseHost" . }} {{ include "property-settings-svc-v2-chart.databasePort" . }}; do + echo "Database is unavailable - sleeping" + sleep 2 + done + echo "Database is up!" + sleep 10 + containers: + - name: dbinit + image: mysql:8.0 + env: + - name: MYSQL_HOST + value: {{ include "property-settings-svc-v2-chart.databaseHost" . | quote }} + - name: MYSQL_PORT + value: {{ include "property-settings-svc-v2-chart.databasePort" . | quote }} + - name: MYSQL_DATABASE + value: {{ include "property-settings-svc-v2-chart.databaseName" . | quote }} + - name: MYSQL_USER + value: {{ include "property-settings-svc-v2-chart.databaseUsername" . | quote }} + - name: MYSQL_PWD + value: {{ include "property-settings-svc-v2-chart.databasePassword" . | quote }} + command: + - /bin/bash + - -c + - | + set -ex + + echo "=========================================" + echo "Property Settings Database Migration" + echo "=========================================" + echo "Host: ${MYSQL_HOST}:${MYSQL_PORT}" + echo "Database: ${MYSQL_DATABASE}" + echo "User: ${MYSQL_USER}" + echo "=========================================" + + # Test connection + echo "Testing database connection..." + if ! mysql -h"${MYSQL_HOST}" -P"${MYSQL_PORT}" -u"${MYSQL_USER}" -e "SELECT 1" 2>/dev/null; then + echo "ERROR: Cannot connect to database" + exit 1 + fi + echo "✓ Database connection successful" + echo "" + + # Apply migrations in order + TOTAL=0 + SUCCESS=0 + FAILED=0 + + for sql_file in /migrations/*.sql; do + if [ ! -f "$sql_file" ]; then + continue + fi + + filename=$(basename "$sql_file") + TOTAL=$((TOTAL + 1)) + + echo -n "Applying $filename... " + + if mysql -h"${MYSQL_HOST}" -P"${MYSQL_PORT}" -u"root" < "$sql_file" 2>/tmp/migration_error.log; then + echo "✓ SUCCESS" + SUCCESS=$((SUCCESS + 1)) + else + echo "✗ FAILED" + echo "Error details:" + cat /tmp/migration_error.log + FAILED=$((FAILED + 1)) + + # Stop on first error + echo "" + echo "=========================================" + echo "Migration failed at: $filename" + echo "=========================================" + exit 1 + fi + done + + echo "" + echo "=========================================" + echo "Migration Summary:" + echo " Total: $TOTAL" + echo " Success: $SUCCESS" + echo " Failed: $FAILED" + echo "=========================================" + + if [ $FAILED -eq 0 ]; then + echo "✓ All migrations completed successfully!" + exit 0 + else + echo "✗ Some migrations failed" + exit 1 + fi + volumeMounts: + - name: sql-migrations + mountPath: /migrations + volumes: + - name: sql-migrations + configMap: + name: {{ include "property-settings-svc-v2-chart.fullname" . }}-sql-migrations +{{- end }} diff --git a/property-settings-svc-v2-chart/templates/secret.yaml b/property-settings-svc-v2-chart/templates/secret.yaml new file mode 100644 index 0000000..52e6eb0 --- /dev/null +++ b/property-settings-svc-v2-chart/templates/secret.yaml @@ -0,0 +1,44 @@ +apiVersion: v1 +kind: Secret +metadata: + name: {{ include "property-settings-svc-v2-chart.fullname" . }}-db-config + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 4 }} +type: Opaque +stringData: + propertySettingsV2.hbm.xml: | + + + + + com.mysql.cj.jdbc.Driver + {{ include "property-settings-svc-v2-chart.databaseJdbcUrl" . }} + {{ include "property-settings-svc-v2-chart.databaseUsername" . }} + {{ include "property-settings-svc-v2-chart.databasePassword" . }} + 1 + dblib.CustomMySQL8DialectUtf8mb4 + thread + org.hibernate.cache.NoCacheProvider + false + false + false + false + + 2 + true + true + UTF-8 + + 10 + 30 + 0 + 10 + 3605 + true + 30 + select 1; + true + + \ No newline at end of file diff --git a/property-settings-svc-v2-chart/templates/service.yaml b/property-settings-svc-v2-chart/templates/service.yaml new file mode 100644 index 0000000..44c8cec --- /dev/null +++ b/property-settings-svc-v2-chart/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "property-settings-svc-v2-chart.fullname" . }} + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "property-settings-svc-v2-chart.selectorLabels" . | nindent 4 }} diff --git a/property-settings-svc-v2-chart/templates/serviceaccount.yaml b/property-settings-svc-v2-chart/templates/serviceaccount.yaml new file mode 100644 index 0000000..b178c0a --- /dev/null +++ b/property-settings-svc-v2-chart/templates/serviceaccount.yaml @@ -0,0 +1,13 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "property-settings-svc-v2-chart.serviceAccountName" . }} + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +automountServiceAccountToken: {{ .Values.serviceAccount.automount }} +{{- end }} diff --git a/property-settings-svc-v2-chart/templates/tests/test-connection.yaml b/property-settings-svc-v2-chart/templates/tests/test-connection.yaml new file mode 100644 index 0000000..4f06bb6 --- /dev/null +++ b/property-settings-svc-v2-chart/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "property-settings-svc-v2-chart.fullname" . }}-test-connection" + labels: + {{- include "property-settings-svc-v2-chart.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "property-settings-svc-v2-chart.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/property-settings-svc-v2-chart/values.yaml b/property-settings-svc-v2-chart/values.yaml new file mode 100644 index 0000000..c4efbab --- /dev/null +++ b/property-settings-svc-v2-chart/values.yaml @@ -0,0 +1,347 @@ +# Default values for property-settings-svc-v2-chart. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +# This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ +replicaCount: 1 + +# This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/ +image: + repository: localhost:5001/prj-onlinesales-prod-01/os-docker-images/onlinesales/prod/services/java/propertysettingssvcv2 + # This sets the pull policy for images. + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "1752740345878" + +# This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ +imagePullSecrets: [] +# This is to override the chart name. +nameOverride: "property-settings" +fullnameOverride: "" + +# This section builds out the service account more information can be found here: https://kubernetes.io/docs/concepts/security/service-accounts/ +serviceAccount: + # Specifies whether a service account should be created. + create: true + # Automatically mount a ServiceAccount's API credentials? + automount: true + # Annotations to add to the service account. + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template. + name: "" + +# This is for setting Kubernetes Annotations to a Pod. +# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ +podAnnotations: {} +# This is for setting Kubernetes Labels to a Pod. +# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ +podLabels: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +# This is for setting up a service more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/ +service: + # This sets the service type more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + type: ClusterIP + # This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports + port: 8080 + +# This block is for setting up the ingress for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/ingress/ +ingress: + enabled: false + className: "" + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: + - path: / + pathType: ImplementationSpecific + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +# -- Expose the service via gateway-api HTTPRoute +# Requires Gateway API resources and suitable controller installed within the cluster +# (see: https://gateway-api.sigs.k8s.io/guides/) +httpRoute: + # HTTPRoute enabled. + enabled: false + # HTTPRoute annotations. + annotations: {} + # Which Gateways this Route is attached to. + parentRefs: + - name: gateway + sectionName: http + # namespace: default + # Hostnames matching HTTP header. + hostnames: + - chart-example.local + # List of rules and filters applied. + rules: + - matches: + - path: + type: PathPrefix + value: /headers + # filters: + # - type: RequestHeaderModifier + # requestHeaderModifier: + # set: + # - name: My-Overwrite-Header + # value: this-is-the-only-value + # remove: + # - User-Agent + # - matches: + # - path: + # type: PathPrefix + # value: /echo + # headers: + # - name: version + # value: v2 + +resources: + requests: + cpu: 500m + memory: 512Mi + +# This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ +livenessProbe: + httpGet: + path: /propertySettingsSvcV2/properties?jsonQuery=%7B%22requestType%22%3A%22GetAllProperties%22%2C%22isActive%22%3A%22true%22%2C%22propertyTypeFilter%22%3A%5B%22BUSINESS_SEGMENT_SET%22%5D%2C%22isBestProperty%22%3Afalse%2C%22entityDetails%22%3A%5B%7B%22entityType%22%3A%22AGENCY%22%2C%22entityValue%22%3A%22424_1%22%7D%5D%2C%22application%22%3A%22nagios%22%7D + port: http + initialDelaySeconds: 30 + periodSeconds: 30 + timeoutSeconds: 10 + failureThreshold: 3 +readinessProbe: + httpGet: + path: /propertySettingsSvcV2/properties?jsonQuery=%7B%22requestType%22%3A%22GetAllProperties%22%2C%22isActive%22%3A%22true%22%2C%22propertyTypeFilter%22%3A%5B%22BUSINESS_SEGMENT_SET%22%5D%2C%22isBestProperty%22%3Afalse%2C%22entityDetails%22%3A%5B%7B%22entityType%22%3A%22AGENCY%22%2C%22entityValue%22%3A%22424_1%22%7D%5D%2C%22application%22%3A%22nagios%22%7D + port: http + initialDelaySeconds: 30 + periodSeconds: 30 + timeoutSeconds: 10 + failureThreshold: 3 + +# This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/ +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 10 + targetCPUUtilizationPercentage: 200 + targetMemoryUtilizationPercentage: 80 + +# Traefik Ingress Configuration (for test setup with IP header injection) +# Enable this to route traffic through Traefik with custom IP header injection +traefik: + # Enable Traefik routing for Hades calls + enabled: false + # Service-specific IP address for X-Client-IP header + clientIP: "10.0.0.1" + # Base URL for routing to Hades via Traefik (path-based routing - no DNS config needed) + hadesUrl: "http://traefik.traefik.svc.cluster.local/property-hades" + # Middleware reference (must exist in cluster) + middleware: + name: "property-settings-caller-headers" + namespace: "traefik" + +# Additional volumes on the output Deployment definition. +volumes: [] + # The deployment will automatically add config and db-config volumes + # - config volume mounts ConfigMap with application configuration files + # - db-config volume mounts Secret with Hibernate mapping + +# Additional volumeMounts on the output Deployment definition. +volumeMounts: [] + # The deployment automatically mounts: + # - /etc/onlinesales/config/propertySettingsSvcV2 (from config ConfigMap) + # - /etc/onlinesales/db (from db-config Secret) + +nodeSelector: {} + +tolerations: [] + +affinity: {} + +# MySQL Database Configuration +# Set mysql.enabled to true to deploy MySQL as part of this chart +# Set mysql.enabled to false to use an external MySQL database +mysql: + enabled: true + image: "mysql" + imageTag: "8.0.33" + imagePullPolicy: IfNotPresent + mysqlRootPassword: "changeme" + mysqlUser: "propertysettings" + mysqlPassword: "changeme" + mysqlDatabase: "property_settings_db_v2" + persistence: + enabled: true + size: 8Gi + storageClass: "" + resources: + requests: + cpu: 250m + memory: 256Mi + configurationFiles: + mysql.cnf: |- + [mysqld] + default_authentication_plugin=mysql_native_password + character-set-server=utf8 + collation-server=utf8_general_ci + sql_mode=NO_ENGINE_SUBSTITUTION + max_allowed_packet=16M + +# Database initialization +# Automatically runs all SQL migration files from sql/ directory in alphabetical order +# SQL files are loaded via ConfigMap and executed by a Helm Job (post-install/post-upgrade hook) +# To use a specific set of files, manage them in the sql/ directory: +# - For clean installation: Use 000-003 files (004 can be removed or renamed) +# - For complete dump with data: Use only 004 file (rename others to .bak or remove) +dbInit: + enabled: true + +# External MySQL Configuration (used when mysql.enabled=false) +externalDatabase: + host: "mysql.example.com" + port: 3306 + database: "property_settings_db_v2" + username: "propertysettings" + password: "changeme" + +# Application Configuration Files +# These values are used to generate the ConfigMap mounted at /etc/onlinesales/config/propertySettingsSvcV2 + +appEnv: + test + +config: + # Main service configuration + propertySettingsService: + prod: + logConfig: "/etc/onlinesales/config/propertySettingsSvcV2/log.cfg" + hibernateConfig: "/etc/onlinesales/db/propertySettingsV2.hbm.xml" + restAccessorConfig: "/etc/onlinesales/config/propertySettingsSvcV2/prodRestAccessor.cfg" + test: + logConfig: "/etc/onlinesales/config/propertySettingsSvcV2/log.cfg" + hibernateConfig: "/etc/onlinesales/db/propertySettingsV2.hbm.xml" + restAccessorConfig: "/etc/onlinesales/config/propertySettingsSvcV2/testRestAccessor.cfg" + + # Logging configuration + log: | + log4j.rootLogger=DEBUG, root + log4j.logger.OS=DEBUG, root + log4j.logger.org.hibernate=DEBUG, root + log4j.appender.root=org.apache.log4j.ConsoleAppender + log4j.appender.root.layout=org.apache.log4j.PatternLayout + log4j.appender.root.layout.ConversionPattern=<%d> %5p [%t](%c) [%X{request_id}] - %m%n + log4j.additivity.OS=false + + log4j.logger.SOKRATI_METRICS=OFF, A3 + log4j.appender.A3=org.apache.log4j.ConsoleAppender + log4j.appender.A3.layout=org.apache.log4j.PatternLayout + log4j.appender.A3.layout.ConversionPattern=<%d> %5p [%t](%c) - %m%n + log4j.additivity.SOKRATI_METRICS=false + + # Production REST accessor configuration + prodRestAccessor: | + { + "post_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "post", + "response": "com.sokrati.propertySettingsSvcObjectsV2.PostPropertiesResponse" + }, + "get_all_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "get", + "response": "com.sokrati.propertySettingsSvcObjectsV2.GetPropertiesResponse" + }, + "get_best_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "get", + "response": "com.sokrati.propertySettingsSvcObjectsV2.GetPropertiesResponse" + }, + "fetch_context": + { + "url": "http://hades.hades.svc.cluster.local:8080/hadesV2/context", + "type": "get", + "response": "com.sokrati.hadesObjects.ContextResponse" + } + } + + # Test REST accessor configuration + testRestAccessor: | + { + "post_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "post", + "response": "com.sokrati.propertySettingsSvcObjectsV2.PostPropertiesResponse" + }, + "get_all_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "get", + "response": "com.sokrati.propertySettingsSvcObjectsV2.GetPropertiesResponse" + }, + "get_best_properties": + { + "url": "http://prop-property-settings:8080/propertySettingsSvcV2/properties", + "type": "get", + "response": "com.sokrati.propertySettingsSvcObjectsV2.GetPropertiesResponse" + }, + "fetch_context": + { + "url": "http://hades.hades.svc.cluster.local:8080/hadesV2/context", + "type": "get", + "response": "com.sokrati.hadesObjects.ContextResponse" + } + } + + # Authentication configuration + auth: | + { + prod: { + hades_auth_url : "http://hades.hades.svc.cluster.local:8080/hadesV2/authorize", + auth_enable : true + }, + test: { + hades_auth_url : "http://hades.hades.svc.cluster.local:8080/hadesV2/authorize", + auth_enable : true + } + } + + # Statistics logging configuration + statsLogging: | + { + test: { + metric_name_prefix: "", + statsd_host: "localhost", + statsd_port: "8125", + logging_enabled: "true", + }, + prod: { + metric_name_prefix: "", + statsd_host: "localhost", + statsd_port: "8125", + logging_enabled: "true", + } + } + + + + diff --git a/traefik-config/ingressroute-property-to-hades.yaml b/traefik-config/ingressroute-property-to-hades.yaml new file mode 100644 index 0000000..8b26447 --- /dev/null +++ b/traefik-config/ingressroute-property-to-hades.yaml @@ -0,0 +1,23 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: property-to-hades + namespace: hades + labels: + target: "hades" + caller: "property-settings" +spec: + entryPoints: + - web + routes: + - match: PathPrefix(`/property-hades`) + kind: Rule + services: + - name: hades + namespace: hades + port: 8080 + middlewares: + - name: property-settings-caller-headers + namespace: hades + - name: strip-property-prefix + namespace: hades diff --git a/traefik-config/ingressroute-serviceb-to-hades.yaml b/traefik-config/ingressroute-serviceb-to-hades.yaml new file mode 100644 index 0000000..23e898c --- /dev/null +++ b/traefik-config/ingressroute-serviceb-to-hades.yaml @@ -0,0 +1,21 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: serviceb-to-hades + namespace: traefik + labels: + target: "hades" + caller: "serviceb" +spec: + entryPoints: + - web + routes: + - match: Host(`serviceb-hades.local`) + kind: Rule + services: + - name: hades + namespace: hades + port: 8080 + middlewares: + - name: serviceb-caller-headers + namespace: traefik diff --git a/traefik-config/middleware-property-settings-caller.yaml b/traefik-config/middleware-property-settings-caller.yaml new file mode 100644 index 0000000..397ee3a --- /dev/null +++ b/traefik-config/middleware-property-settings-caller.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: property-settings-caller-headers + namespace: traefik + labels: + purpose: "hades-ip-injection" + caller: "property-settings" +spec: + headers: + customRequestHeaders: + X-Client-IP: "10.0.0.1" + X-Original-IP: "10.0.0.1" + X-Forwarded-For: "10.0.0.1" diff --git a/traefik-config/middleware-serviceb-caller.yaml b/traefik-config/middleware-serviceb-caller.yaml new file mode 100644 index 0000000..32ad49c --- /dev/null +++ b/traefik-config/middleware-serviceb-caller.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: serviceb-caller-headers + namespace: traefik + labels: + purpose: "hades-ip-injection" + caller: "serviceb" +spec: + headers: + customRequestHeaders: + X-Client-IP: "10.0.0.2" + X-Original-IP: "10.0.0.2" + X-Forwarded-For: "10.0.0.2" diff --git a/traefik-config/middleware-strip-property-prefix.yaml b/traefik-config/middleware-strip-property-prefix.yaml new file mode 100644 index 0000000..eded079 --- /dev/null +++ b/traefik-config/middleware-strip-property-prefix.yaml @@ -0,0 +1,9 @@ +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: strip-property-prefix + namespace: traefik +spec: + stripPrefix: + prefixes: + - /property-hades diff --git a/traefik-config/service-ip-registry.yaml b/traefik-config/service-ip-registry.yaml new file mode 100644 index 0000000..d823878 --- /dev/null +++ b/traefik-config/service-ip-registry.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: traefik-service-ips + namespace: traefik + labels: + app: traefik + component: config +data: + # Service name to IP address mappings (for documentation) + property-settings-svc: "10.0.0.1" + serviceb-svc: "10.0.0.2" + # Add new services here: + # servicec-svc: "10.0.0.3"